代码如下:
图书馆(RVest) 库(字符串) 图书馆(dplyr) 库(ggplot2)
plik_html = read_html(“ https://en.wikipedia.org/wiki/List_of_countries_by_vehicles_per_capita”) tabela_html = html_node(plik_html,“#mw-content-text> div> table.wikitable.sortable.jquery-tablesorter”)
tabela_r = html_table(tabela_html, fill = TRUE)
我得到这个错误
Error in UseMethod("html_table") : no applicable method for 'html_table' applied to an object of class "xml_missing" >
,我不知道该如何解决。请帮忙。我正在尝试从网站上读取第一张桌子。