看书上有个代码是画直方图的 就想试着敲一下看看 先下载载入了程序包ggplot2 然后照着敲了代码:
library('ggplot2')
data.file<-file.path('data','01_heights_weights_genders.csv')
到这儿都没问题
然后又敲下一行:
heights.weights<-read.csv(data.file,header=TRUE,sep=',')
一敲回车就出错了 显示:
Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") :
cannot open file 'data/01_heights_weights_genders.csv': No such file or directory
新手不懂啊~ 不知道我把工作目录改到了f盘有关系没。。。。
|