Webscraping with Rvest
11–15 of 15 posts
Re: Webscraping with Rvest
#12Re: Webscraping with Rvest
#13Rvest works fine with tabular data. If, however, you are working with data outside of Wikipedia, you will find that website data is very rarely available in a and is instead part of a hierarchical tree, which is a pain to process/clean in R. In such cases, working with Python/BeautifulSoup4 and importing the clean and normalized data into R will save frustration over time, even offsetting the overhead of using two la…
BUT Rvest is a BeautifulSoup inspired library and works pretty much the same way?
Re: Webscraping with Rvest
#14Rvest is for webscrapping newbs. A more seasoned R person would still use PhantomJS and RSelenium as it actually collects all the page's information but Rvest only collections a portion of it. Try it on washingtonpost.com and you will see.
down voted for calling people newbs. Also it always depends on what tool works best.