[軟體熟悉度]:
使用者(已經有用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()