Advertisement
qharr

Untitled

Apr 1st, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. library(rvest)
  2.  
  3. url <- 'https://www.otomoto.pl/osobowe/'
  4. html <- read_html(url)
  5.  
  6. makes <- html %>%
  7. html_nodes("#param571 option") %>%
  8. html_attr('value')
  9.  
  10. remove <- c("","Marka pojazdu", "other")
  11. makes <- setdiff(makes, remove)
  12.  
  13. for (make in makes) {
  14. print(make)
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement