gpt4 book ai didi

从省略上三角部分的文件中读取对称矩阵

转载 作者:行者123 更新时间:2023-12-02 05:27:04 24 4
gpt4 key购买 nike

使用 R,从省略上三角部分的文件中读取对称矩阵的最佳方法是什么。例如,

1.000
.505 1.000
.569 .422 1.000
.602 .467 .926 1.000
.621 .482 .877 .874 1.000
.603 .450 .878 .894 .937 1.000

我试过read.table,但没有成功。

最佳答案

这是一个 read.table 和无循环且 *apply-less 的解决方案:

txt <- "1.000
.505 1.000
.569 .422 1.000
.602 .467 .926 1.000
.621 .482 .877 .874 1.000
.603 .450 .878 .894 .937 1.000"
# Could use clipboard or read this from a file as well.
mat <- data.matrix( read.table(text=txt, fill=TRUE, col.names=paste("V", 1:6)) )
mat[upper.tri(mat)] <- t(mat)[upper.tri(mat)]
> mat
V1 V2 V3 V4 V5 V6
[1,] 1.000 0.505 0.569 0.602 0.621 0.603
[2,] 0.505 1.000 0.422 0.467 0.482 0.450
[3,] 0.569 0.422 1.000 0.926 0.877 0.878
[4,] 0.602 0.467 0.926 1.000 0.874 0.894
[5,] 0.621 0.482 0.877 0.874 1.000 0.937
[6,] 0.603 0.450 0.878 0.894 0.937 1.000

关于从省略上三角部分的文件中读取对称矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13863569/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com