我想将以下URL中的数据读入R,但我做不到。有人对此有任何想法吗?谢谢!http://web.stanford.edu/~hastie/ElemStatLearn/我需要数据臭氧
数据托管在http://web.stanford.edu/~hastie/ElemStatLearn/datasets/ozone.data
这些值用制表符分隔,因此您可以使用read_tsv
从阅读器包中读取它:
library(readr)
read_tsv("http://web.stanford.edu/~hastie/ElemStatLearn/datasets/ozone.data")
这将直接从网站上读取数据,因此您不需要自己手动下载。