Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. library("tidyr")
  2. library("dplyr")
  3. library("rvest")
  4. library("curl")
  5. ps4_score <- vector("list", 894)
  6. ps4_title <- vector("list", 894)
  7. index <- seq(0, 8, by=1)
  8.  
  9. for(i in index) {
  10. ps4<-read_html(curl(paste0("http://www.metacritic.com/browse/games/score/userscore/all/ps4?sort=desc&page=", i), handle = curl::new_handle("useragent" = "Mozilla/5.0")))
  11. ps4_score[[i]] <- ps4 %>% html_nodes(xpath="//div[contains(@class, 'metascore_w')]/text()") %>% html_text()
  12. ps4_title[[i]] <- ps4 %>% html_nodes(xpath="//div[contains(@class, 'product_title')]/a/text()") %>% html_text()
  13. }
  14. ps4_score
  15. ps4_title
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement