Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文本文件
数据集可以在这里找到。如何将这些数据读入 R data.frame?
read.table自动忽略空行。所以这应该工作:
read.table
read.table("http://www.jmulti.de/download/datasets/GermanM1System.dat",skip=27,header=TRUE)