尝试使用colClasses=c("Date","numeric")
将第一列转换为日期格式时,我不断收到以下错误:
Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
scan() expected 'a real', got '2012-01-03'
第一行看起来像:
data[1,]
Date Price
1 2012-01-03 85.40
2 2012-01-04 87.41
3 2012-01-05 88.69
4 2012-01-06 87.34
我已将日期读作:
data<-read.table("file/data.txt", header=T, quote="\"")
我在互联网上搜索过,但找不到我的代码有什么问题。 有人能给我一个提示,我该如何解决这个问题?