Hi everyone.
I'm new at rvest and web scraping data. I've been trying automate data colect retrieved at http://www6.sistemaindustria.org.br/gpc/externo/listaResultados.faces?codPesquisa=100.
The data is in excel format and we download it at the page.
What I have been done is to save all the table nodes in a object named "tables" (see bellow) but I can't find where the desired informations (excel tables) are retrieved. They must be inside the "table nodes" object but after investigating carefully I could not find them.
Does anyone coul gently help me?
#Code:
URL base
www <- "http://www6.sistemaindustria.org.br/gpc/externo/listaResultados.faces?codPesquisa=100."
pg <- rvest::read_html(www)
tables <- pg%>%html_nodes('table')