码迷,mamicode.com
首页 > 其他好文 > 详细

R 给data.frame(dataframe)添加一列

时间:2016-04-10 19:24:20      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:

 x<-data.frame(apple=c(1,4,2,3),pear=c(4,8,5,2))
 x
#  apple pear
# 1     1    4
# 2     4    8
# 3     2    5
# 4     3    2
x$banana<-c(9,5,6,2)
x
#   apple pear banana
# 1     1    4      9
# 2     4    8      5
# 3     2    5      6
# 4     3    2      2

 

R 给data.frame(dataframe)添加一列

标签:

原文地址:http://www.cnblogs.com/emanlee/p/5373599.html

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