我在csv文件中读取并打印出来:
myfile<-read.csv(file="myfile.csv",header=FALSE,sep=",")
myfile
看起来没错,有11列(V1-V11)。
然后我这样做:
myfile$V12<-cut(myfile$V1,breaks=c(0,33,66,100))
boxplot(V11-V12,data=myfile)
Error in boxplot(V11 - V12, data = myfile) : object 'V11' not found
如果我在没有cut
的情况下再次阅读该文件并执行boxplot(V1-V2,data=myfile)
之类的操作,则会在V1
时出现相同的错误。 boxplot(V3-V4,data=myfile)
会在V3
上抛出错误,依此类推。我认为cut
不是问题。
为什么我收到此错误,我该如何解决?感谢。