Questions tagged as 'rvest'

1
answer

How to do webscrapping from an https using rvest?

I'd like to scrape a page that is on https using the rvest package. However, this is a site with security certificate issues. In these cases, you need to turn off SSL verification - but I do not know how to do this in that package. No...
asked by 16.12.2015 / 17:00
1
answer

Extract information from lattes

Introduction Brazilian researchers have, since 1999, a website where they can post information about their academic career. This information is known as Currículos Lattes . I want to download a few thousand of these resumes and write, along...
asked by 18.04.2018 / 17:32
1
answer

Web Scraping: How to change the value of a drop-down button of a site using R?

I want to create a script in R to read an HTML table. Doing this from a static page with the rvest package is easy, the problem is that I have to change the value of two buttons on the page. The site is this here . Note that above the...
asked by 21.06.2016 / 05:34
1
answer

Error when trying to extract table from a site by R, how to solve?

I'm using this code, I want to import the country table into the R: library(XML) url <- "http://en.wikipedia.org/wiki/List_of_countries_by_population" country_data <- readHTMLTable(url, which=2) R returns the error: Error: failed to...
asked by 22.02.2017 / 20:56
1
answer

Why does rvest break when processing an empty file?

When trying to process the contents of an empty file, the rvest package locks and closes RStudio . Here is a small replay of the problem: tf <- tempfile() file.create(tf) html_erro <- read_html(tf) html_erro %>% html_node...
asked by 22.11.2016 / 01:41
0
answers

Does anyone know how to do a Web Scraping on the SICONV (Free Access) website?

I'm trying to extract the information from the siconv site that deals with covenants in R: link link It turns out that when I use R, with the rvest and httr packages, it redirects to the login screen located at link . I tried to...
asked by 02.12.2018 / 01:28