[软件熟悉度]:
使用者(已经有用R 做过不少作品)
[问题叙述]:
各位前辈大大大家好,
小弟我最近爬巴哈姆特的文章,
关于哈拉版和新闻都能够爬,
但是到了爬排行榜时, 却爬不出任何结果,
因此上板来求救~ 谢谢!
[程式范例]:
library(rvest)
library(magrittr)
library(httr)
urls <- 'https://acg.gamer.com.tw/index.php?t=1&p=Android'
ranktable <- urls %>% GET(encoding = 'UTF-8') %>% content %>%
html_nodes(css = 'td:nth-child(1)') %>% html_text()