简体   繁体   English

从保存在R中多个列表的矩阵对角线中提取元素

[英]Extract elements from matrix diagonal saved in multiple lists in R

I´m trying to get different elements from multiple diagonal saved as lists. 我正在尝试从保存为列表的多个对角线中获取不同的元素。 My data looks something like this: 我的数据如下所示:

res <- list()
res[[1]] <- matrix(c(0.04770856,0.02854005,0.02854005,0.03260190), nrow=2, ncol=2)
res[[2]] <- matrix(c(0.05436957,0.04887182,0.04887182, 0.10484454), nrow=2, ncol=2)

> res
[[1]]
           [,1]       [,2]
[1,] 0.04770856 0.02854005
[2,] 0.02854005 0.03260190

[[2]]
           [,1]       [,2]
[1,] 0.05436957 0.04887182
[2,] 0.04887182 0.10484454

> diag(res[[1]])
[1] 0.04770856 0.03260190
> diag(res[[2]])
[1] 0.05436957 0.10484454

I would like to save the first and second elements of each diagonal of a given list into a vector similar to this: 我想将给定列表的每个对角线的第一个和第二个元素保存到类似于此的向量中:

d.1st.el <- c(0.04770856, 0.05436957)
d.2nd.el <- c(0.03260190, 0.10484454)

My issue is to write the function that runs for all given lists and get the diagonals. 我的问题是编写为所有给定列表运行并获取对角线的函数。 For some reason, when I use unlist() to extract the values of each matrix for a given level, it doesn't get me the number but the full matrix. 出于某种原因,当我使用unlist()提取给定级别的每个矩阵的值时,它不会得到数字,而是完整的矩阵。

Does anyone have a simple solution? 有没有人有一个简单的解决方案?

sapply(res, diag)

           [,1]       [,2]
[1,] 0.04770856 0.05436957
[2,] 0.03260190 0.10484454

# or
lapply(res, diag)
[[1]]
[1] 0.04770856 0.03260190

[[2]]
[1] 0.05436957 0.10484454

If you want the vectors for some reason in your global environment: 如果出于某些原因想要在全局环境中使用向量:

alld <- lapply(res, diag)
names(alld) <- sprintf("d.%d.el", 1:length(alld))
list2env(alld, globalenv())

In two steps you can do: 您可以分两步执行以下操作:

# Step 1 - Get the diagonals
all_diags <- sapply(res, function(x) diag(t(x)))

print(all_diags)

           [,1]       [,2]
[1,] 0.04770856 0.05436957
[2,] 0.03260190 0.10484454

# Step 2 - Append to vectors

d.1st.el <- all_diags[1,]
d.2nd.el <- all_diags[2,]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM