rvest を使用して、Gates Foundation Awarded Grants Table からいくつかの列をスクレイピングしようとしています。以下は私のコードです:
library(rvest)
data1 <- html('http://www.gatesfoundation.org/How-We-Work/Quick-Links/Grants-Database#q/program=US%20Program&year=2015')
table1 <- data1 %>%html_nodes('td:nth-child(5) , td:nth-child(3)') %>% html_text()
table1
「table1」コマンドから受け取る出力は次のとおりです。
キャラクター(0)
使用している CSS セレクターに問題はありますか? このタイプのテーブルは rvest と互換性がありませんか?