1. 程式人生 > >R語言讀取txt檔案報錯scan(..)

R語言讀取txt檔案報錯scan(..)

 Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, : 84133行沒有11個元素
model <- read.table("h://test.txt",header=TRUE) 更改成: model <- read.table("h://test.txt",sep="\t",header=TRUE)
問題就解決了!