在间隔之间选择矩阵的元素

时间:2011-03-21 04:45:13

标签: r matrix

是否有任何代码可以在间隔之间选择矩阵的所有元素(间隔为:min(data[,1])min(data[,dim(data)[2]]))?例如,数据是这样的:

> data <- matrix(c(58,47,40,42,38,22,53,43,36,62,51,44),byrow=T,ncol=3)

所选要素应为:22,36,38,40,42 非常感谢提前。

1 个答案:

答案 0 :(得分:3)

鉴于您希望所有元素介于第一列的最小值和最后一列的最小值之间,您可以直接索引矩阵:

dat <- matrix(c(58, 47, 40, 42, 38, 22, 53, 43, 36, 62, 51, 44), byrow = TRUE, ncol = 3)

## grab the two values and sort them (assumes there are no missing values)
## using ncol() is a bit neater than dim(x)[2] for a matrix
minmax <- sort(c(min(dat[,1]), min(dat[,ncol(dat)])))

## subset by direct indexing (as if dat were a vector)
res <- dat[dat >= minmax[1] & dat <= minmax[2]]

## sort the result
sort(res)
[1] 22 36 38 40 42

我调用了矩阵“dat”而不是“data”,因为这是R中的一个函数。