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

2018-12-23  本文已影响0人  HELENZ要早起早睡

工作路径

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表格

exam_namelist<-read.table('namelist.csv',header = TRUE)
View(exam_namelist)

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

上一篇 下一篇

猜你喜欢

热点阅读