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

R:从文本文件读取矩阵

时间:2014-10-05 00:47:17      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:http   ar   文件   c   html   r   ad   htm   as   

在~下有一文本文件matrix.dat内容如下:
99 102 3
12 43 213.0
12 12 2
23 21 211



方式1:
> A <- matrix(scan("~/matrix.dat", n = 3*4), 3, 4, byrow = TRUE)
Read 12 items
> A
     [,1] [,2] [,3] [,4]
[1,]   99  102    3   12
[2,]   43  213   12   12
[3,]    2   23   21  211



方式2:
> A <- as.matrix(read.table("matrix.dat"))
> A
     V1  V2  V3
[1,] 99 102   3
[2,] 12  43 213
[3,] 12  12   2
[4,] 23  21 211



参考:
https://stat.ethz.ch/pipermail/r-help/2006-June/108227.html

R:从文本文件读取矩阵

标签:http   ar   文件   c   html   r   ad   htm   as   

原文地址:http://my.oschina.net/letiantian/blog/324257

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