码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2017-06-04 09:47:11      阅读:1209      评论:0      收藏:0      [点我收藏+]

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

数据框中数据导入

> 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   

原文地址:http://www.cnblogs.com/dshn/p/6939483.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!