R colClasses
のread.csv
関数でオプションを指定しようとしています。私のデータでは、最初の列「時間」は基本的に文字ベクトルで、残りの列は数値です。
data <- read.csv("test.csv", comment.char="" ,
colClasses=c(time="character", "numeric"),
strip.white=FALSE)
上記のコマンドでは、Rが「時間」列を「文字」として読み取り、残りを数値として読み取るようにします。コマンドが完了した後、「データ」変数は正しい結果でしたが、Rは次の警告を返しました。これらの警告を修正するにはどうすればよいですか?
Warning messages:
1: In read.table(file = file, header = header, sep = sep, quote = quote, :
not all columns named in 'colClasses' exist
2: In tmp[i[i > 0L]] <- colClasses :
number of items to replace is not a multiple of replacement length
デレク