我正在努力搜索有关谷歌云平台免费等级的信息。来自Stackoverflow,但我只能收集前15条评论,而不是其余的评论。请注意,我能够从其他Stackoverflow链接中获取完整数据。
site <- paste0('https://stackoverflow.com/search?tab=newest&q=google%20cloud%20platform%20free%20tier')
webpage <- read_html(site)
draft_table <- html_nodes(webpage,'.excerpt')
draft <- html_text(draft_table)
finaldf99<-data.frame(draft)
nrow(finaldf99)
请帮忙。
谢谢, Tanuvi