我是 R 新手。我正在尝试读取以空格分隔的“CSV”文件。该文件没有标题。看起来像这样
Element1 Element2
Element5 Element6 Element7
我正在尝试这样阅读它:
> mydata <- read.table("/PathTo/file.csv")
Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
line 1 did not have 14 elements
为什么它期望第一行中有 14 个元素?如何导入此文件?