r - rvest returns wrong results -


for research project want build database university information available on topuniversities.com. manage write code extract information specific university pages fine. loop on database, need extract links university pages available @ main page. here run problems. reason code not identify links although can find them selector gadget , inspection pane in chrome. assume not refer right nodes not able solve problem.

this code:

url_university_list <- "http://www.topuniversities.com/university-rankings/university-subject-rankings/2015/statistics-operational-research#sorting=rank+region=+country=+faculty=+stars=false+search=" url_university_list %>%   read_html() %>%   html_nodes("a") %>% html_attr("href")  

a node identified selector gadget. when run code gives results not links university pages. ideas?


Comments