我正在尝试将 CSV 从 github 读入 R:
latent.growth.data <- read.csv("https://github.com/aronlindberg/latent_growth_classes/blob/master/LGC_data.csv")
但是,这给了我:
Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") : unsupported URL scheme
我试过?read.csv
, ?download.file
, getURL
(只返回奇怪的 HTML),以及数据导入手册,但仍然无法理解如何使其工作。
我究竟做错了什么?