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

提取data.frame中的部分数据(不含列标题和行标题)

时间:2016-07-24 16:26:42      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:

 

 ?unlist
    Given a list structure x, unlist simplifies it to produce a vector which contains all the atomic components which occur in x.

unlist(v.row)
[1] 177 165 177 177 177 177 145 132 126 132 132 132 126 120 145 167 167 167
       167 165 177 177 177 177

 

You can do it with as.vector also, but you need to provide the correct mode:
 as.vector(v.row,mode=‘numeric‘)
 [1] 177 165 177 177 177 177 145 132 126 132 132 132 126 120 145 167 167
      167 167 165 177 177 177 177

提取data.frame中的部分数据(不含列标题和行标题)

标签:

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

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