我正在尝试从GitHub导入此数据集:
https://github.com/shifteight/R/blob/master/TRB/data/worldfloras.txt
我尝试了以下方式:
library(XML)
library(RCurl)
url<-"https://github.com/shifteight/R/blob/master/TRB/data/worldfloras.txt"
urldata<-getURL(url)
data<-readHTMLTable(url data, header=TRUE, sep="\t" stringsAsFactors=FALSE)
虽然我使用sep =“\ t”,但我的输出如下。
$`NULL`
Country\tLatitude\tArea\tPopulation\tFlora\tEndemism\tContinent
1 Afghanistan\t30\t636\t14.3\t3000\t0.27\tAsia
2 Albania\t42\t29\t3\t3200\t0.008\tEurope
3 Algeria\t35\t2382\t21.3\t3139\t0.08\tN.Africa
...
有没有人对此有解释?如果有人找到我问题的解决方案,我会很高兴。