提问人:Raghav Goyal 提问时间:8/5/2020 最后编辑:r2evansRaghav Goyal 更新时间:8/5/2020 访问量:186
在 R 中抓取新闻标题的问题
Problem with scraping news headlines in R
问:
我正在尝试在 R 中抓取新闻头条。这是我编写的示例代码。但是,它给了我一个空集。有人能告诉我哪里出了问题吗?
library(tidyverse)
library(stringr)
library(rvest)
news_url1 <- "https://www.washingtonpost.com/newssearch/?query=economy&sort=Relevance&datefilter=All%20Since%202005&startat=0#top"
news_html1 <- read_html(as.character(news_url1))
news_html1 %>% html_nodes(".pb-feed-headline")%>% html_text()
答: 暂无答案
评论
read_html
read_html