为什么matrix()和array()返回的对象的类和模式是相同的?

时间:2012-08-09 10:45:42

标签: r class

以下是我的大数据文件的前几行:

Symbol|Security Name|Market Category|Test Issue|Financial Status|Round Lot Size
AAC|Australia Acquisition Corp. - Ordinary Shares|S|N|D|100
AACC|Asset Acceptance Capital Corp. - Common Stock|Q|N|N|100
AACOU|Australia Acquisition Corp. - Unit|S|N|N|100
AACOW|Australia Acquisition Corp. - Warrant|S|N|N|100
AAIT|iShares MSCI All Country Asia Information Technology Index Fund|G|N|N|100
AAME|Atlantic American Corporation - Common Stock|G|N|N|100

我读了以下数据:

data <- read.table("nasdaqlisted.txt", sep="|", quote='', header=TRUE, as.is=TRUE)

并构造一个数组和一个矩阵:

d1 <- array(data, dim=c(nrow(data), ncol(data))) 
d2 <- matrix(data, nrow=nrow(data), ncol=ncol(data))

但是,即使d1是数组且d2是矩阵,classmode也是相同的:

> class(d1)
[1] "matrix"
> mode(d1)
[1] "list"
> class(d2)
[1] "matrix"
> mode(d2)
[1] "list"

这是为什么?

1 个答案:

答案 0 :(得分:6)

我会咬一口,然后去解释我对这些问题的理解。

您不需要大型测试文件来演示此问题。一个简单的data.frame会:

test <- data.frame(var1=1:2,var2=letters[1:2])

> test
  var1 var2
1    1    a
2    2    b

请注意,data.frame内部只是list

> is.data.frame(test)
[1] TRUE
> is.list(test)
[1] TRUE

具有list - 类似于您期望的结构。

> str(test)
'data.frame':   2 obs. of  2 variables:
 $ var1: int  1 2
 $ var2: Factor w/ 2 levels "a","b": 1 2

> str(as.list(test))
List of 2
 $ var1: int [1:2] 1 2
 $ var2: Factor w/ 2 levels "a","b": 1 2

当您针对matrixdata.frame指定list来电时,您最终会得到一个填充了data.frame或list元素的矩阵。

result1 <- matrix(test)

> result1
     [,1]     
[1,] Integer,2
[2,] factor,2 

查看result1的结构,您可以看到它仍然是list,但现在只是维度(请参阅下面输出中的最后一行)。

> str(result1)
List of 2
 $ : int [1:2] 1 2
 $ : Factor w/ 2 levels "a","b": 1 2
 - attr(*, "dim")= int [1:2] 2 1

这意味着它现在既是matrix又是list

> is.matrix(result1)
[1] TRUE
> is.list(result1)
[1] TRUE

如果您从此对象中剥离尺寸,它将不再是matrix,并将恢复为list

dim(result1) <- NULL

> result1
[[1]]
[1] 1 2

[[2]]
[1] a b
Levels: a b

> is.matrix(result1)
[1] FALSE
> is.list(result1)
[1] TRUE

> str(result1)
List of 2
 $ : int [1:2] 1 2
 $ : Factor w/ 2 levels "a","b": 1 2