当前位置:Gxlcms > 数据库问题 > 在RGui中实现数据源的导入(数据框,.txt,excel,MySQL)

在RGui中实现数据源的导入(数据框,.txt,excel,MySQL)

时间:2021-07-01 10:21:17 帮助过:24人阅读

数据框中数据导入

> mydata<-data.frame(age=numeric(0),
+ gender=character(0),
+ weight=numeric(0))
> mydata<-edit(mydata)
Warning message:
In edit.data.frame(mydata) : 在‘gender‘里加上了因子水准
> mydata
age gender weight high
1 1 m 120 180
2 2 f 89 170
3 3 m 98 160
> fix(mydata)
> mydata
age gender weight high
1 1 f 120 180
2 2 f 89 170
3 3 f 98 160

读取.txt中的数据(ANSI格式)

> data<-read.table("C:/test.txt",header=TRUE,sep=",")
> head(data)
id sgbh
1 1 123

读取excel表格中的数据(转化为csv格式)

 

在RGui中实现数据源的导入(数据框,.txt,excel,MySQL)

标签:sep   edit   数据源   mysql   导入   head   gui   weight   read   

人气教程排行