工作路径
- 查看当前路径
getwd()
- 设置工作路径
setwd()
如果用的是windows系统,要注意直接复制过来的路径是不行滴。注意斜杠的方向
> setwd('C:\Users\john\Desktop\R_coding\jianshu')
Error: '\U' used without hex digits in character string starting "'C:\U"
> setwd('C:/Users/john/Desktop/R_coding/jianshu')
导入excel表格
-
先上一张截图
- 记得先把excel的表格导出为csv格式
- 上代码
exam_namelist<-read.table('namelist.csv',header = TRUE)
View(exam_namelist)
- 看效果
还学到了一招,用control +L清除console界面
第一篇R笔记就写到这了,导入excel数据最好还是先转换成csv,直接用xlsx还要安装很多包还需要电脑已经安装了JAVA,总之太麻烦了。