我正在尝试从此网站获取一些唱片数据“https://www.discogs.com/artist/272142-Robert-Johnson?filter_anv=0&subtype=Writing-Arrangement&type=Credits&layout=med”
我正在使用此代码和rvest包:
page <- read_html("https://www.discogs.com/artist/272142-Robert-Johnson?
filter_anv=0&subtype=Writing-Arrangement&type=Credits")
page %>% html_node(".year , #m26093 .icon-caret-down, .skittles, #m820658
img, .label, .title") %>%
html_table(fill=TRUE)
我使用选择器小工具获取了html节点。无论我如何安排代码(即管道,嵌套),我都会收到几条错误消息。
这些是消息:
1)UseMethod(“html_table”)中的错误: 没有适用于'html_table'的方法应用于“character”类的对象
2)错误:html_name(x)==“table”不为TRUE
非常感谢任何帮助。