美文网首页
(一)R工作路径设置以及导入excel数据

(一)R工作路径设置以及导入excel数据

作者: HELENZ要早起早睡 | 来源:发表于2018-12-23 23:28 被阅读0次

工作路径

  • 查看当前路径
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表格

  • 先上一张截图


    image.png
  • 记得先把excel的表格导出为csv格式
  • 上代码
exam_namelist<-read.table('namelist.csv',header = TRUE)
View(exam_namelist)
  • 看效果
    image.png
    还学到了一招,用control +L清除console界面

第一篇R笔记就写到这了,导入excel数据最好还是先转换成csv,直接用xlsx还要安装很多包还需要电脑已经安装了JAVA,总之太麻烦了。

相关文章

网友评论

      本文标题:(一)R工作路径设置以及导入excel数据

      本文链接:https://www.haomeiwen.com/subject/pvrokqtx.html