を使用して、次元 3131875*5 のデータを r で読み取っていますread.big.matrix
。私のデータには、日付変数を含む文字列と数値列の両方があります。私が使用すべきコマンドは
as1 <- read.big.matrix("C:/Documents and Settings/Arundhati.Mukherjee/My Documents/Arundhati/big data/MB07_Arundhati/sample2.txt",
header=TRUE,
backingfile="session.bin",
descriptorfile="session.desc",
type = NA)
しかしtype = NA
、この場合、R では受け入れられず、エラーが発生します。
Error in filebacked.big.matrix(nrow = nrow, ncol = ncol, type = type, :
Problem creating filebacked matrix.
In addition: Warning messages:
1: In na.omit(as.integer(firstLineVals)) : NAs introduced by coercion
2: In na.omit(as.double(firstLineVals)) : NAs introduced by coercion
3: In read.big.matrix("C:/Documents and Settings/Arundhati.Mukherjee/My Documents/Arundhati/big data/MB07_Arundhati/sample2.txt", :
Because type was not specified, we chose double based on the first line of data.
ここに何があるべきかを知る必要がありtype
ます。次のようなオプションを試しましdouble
たが、同じエラーが発生します。
私を助けてください。