gpt4 book ai didi

r - 如何在列表的元素中存储多个向量?

转载 作者:行者123 更新时间:2023-12-04 11:33:18 29 4
gpt4 key购买 nike

我已经生成了一个看起来像这样的文件(这里是一个摘录,大致上两个文件中的每一个具有相同的第 1 列和第 2 列的名称都乘以不同的参数和最佳拟合,即最低的 chi2,是在第 3 列中返回,并在第 4 列和第 5 列中返回相应的参数):

10 05 0.42 0.13 0.01   
10 10 0.30 0.12 0.01
10 15 0.25 0.11 0.07
15 05 0.29 0.12 0.01
15 10 0.25 0.11 0.06
15 15 0.23 0.10 0.02
20 05 0.25 0.11 0.03
20 10 0.23 0.12 0.04
20 15 0.23 0.13 0.05
25 05 0.23 0.10 0.03
25 10 0.23 0.10 0.08
25 15 0.24 0.09 0.05

我正在开始/学习使用列表,因为我的代码使用 for 循环真的很慢(目前我正在使用 4 个 for 循环,所以它太长了),并且我不太了解重写我的优化代码,所以它不需要 8 个小时就可以工作。因此,为了重新组织输出,我想知道是否可以创建一个列表,比如 mytemplist,内容如下:

> mytemplist  
$5
[1] 10 15 20 25
[2] 0.42 0.29 0.25 0.23
[3] 0.13 0.12 0.11 0.10
[4] 0.01 0.01 0.03 0.03

$10
[1] 10 15 20 25
[2] 0.30 0.25 0.23 0.23
[3] 0.12 0.11 0.12 0.10
[4] 0.01 0.06 0.04 0.08

$15
[1] 10 15 20 25
[2] 0.25 0.23 0.23 0.24
[3] 0.11 0.10 0.13 0.09
[4] 0.07 0.02 0.05 0.05

我查看了有关列表的问题,我只能通过在列表中创建列表来解决这个问题,这对这里没有帮助。


编辑:
接受的答案回复了上面的具体问题,回答@rawr post I join how the file is generated(这不是很漂亮,我没有使用 opt 到目前为止我将改进代码以在数据点周围以更大的自由度进行优化) :
注意:要读取的典型文件是 2 列文件(只是数字列表)并命名为 a10b05s 和 a10b05t
dataname 也是一个 2 列文件
在这 3 个文件中,第一列是相同的,代表枢轴
需要找到 par[1] 和 par[2] 使得 par[1]*a10b05s + par[2]*a10b05t 最适合数据

par <- rep(NA, 2)
pivot <- read.table(dataname)[[1]]
data2fit <- read.table(dataname)[[2]]

for (i in 1:10){
vala <- 10+5*(i-1)
namei <- paste("a", vala, sep="")

for (j in 1:10){
#creates a coordinates for storage
cglobal <- (i-1) * 10 + j

valb <- 5+5*(j-1)
namej1 <- paste(namei, "b", valb, "s", sep="")
namej2 <- paste(namei, "b", valb, "t", sep="")
infile1 <- read.table(namej1)
infile2 <- read.table(namej2)

# infile1 prominent wrt infile2 so first quick determination of par1
tempspace1 <- seq(0.001, 0.009, 0.001)
par1_s1 <- c(tempspace1, tempspace1*10, tempspace1*100)
opt1_par1 <- rep(NA, length(par1))

# set a pivot for comparison at position named temppivot find par1 wrt temppivot
for(k in 1:length(par1){
opt1_par1[k] <- abs(par1_s1[k]*infile1[[1]][temppivot] - data2fit[temppivot])
}

par[1] <- par1_s1[match(min(opt1_par1)), opt1_par1]

# set a space for a finer fit for par[1]
par1_s2 <- seq(par[1]-5*par[1]/10, par[1]+5*par[1]/10, par[1]/100)

# set a space to fit par[2] note that there is an option in the code to choose btw 0.001-0.01, 0.01-0.1 etc.
tempspace2 <- seq(0.001, 0.009, 0.0001)
par2 <- c(tempspace2, tempspace2*10, tempspace2*100)
chi2 <- rep(NA, length(par1_s2)*length(par2))
#data2fit

for(z in 1:length(par1_s2)){
for(w in 1:length(par2)){
par[1] <- par1_s2[z]
par[2] <- par2[w]
thesum <- rep(NA, length(pivot))
for(h in 1:length(pivot)){
c1 <- pivot[h]
thesum[h] <- par[1] * infile[[1]][c1] + par[2] * infile2[[1]][c1]
}
c2 <- (z-1) * length(par2) + w
chi2[c2] <- sum((thesum-data2fit)^2/thesum)
}
}

whichbestfit <- match(min(chi2), chi2)
chi2min <- min(chi2)

localparfinder <- function(x){
temp1 <- trunc(x/length(par2)) + 1
temp2 <- x - (temp1 -1) * length(par2)
y <- c(par1_s2[temp1], par2[temp2])
}

par <- localparfinder(whichbestfit)

# creates the table of the original post
storage[cglobal,] <- c(vala, valb, chi2min, par[1], par[2])
}
}


write.table(storage, file=paste("storage_", format(Sys.time(), "%d%b_%H%M"), ".dat", sep="")

最佳答案

你可以使用bytranspose,像这样:

by(mydf[-2], mydf[[2]], t)
# mydf[[2]]: 5
# 1 4 7 10
# V1 10.00 15.00 20.00 25.00
# V3 0.42 0.29 0.25 0.23
# V4 0.13 0.12 0.11 0.10
# V5 0.01 0.01 0.03 0.03
# -----------------------------------------------------------
# mydf[[2]]: 10
# 2 5 8 11
# V1 10.00 15.00 20.00 25.00
# V3 0.30 0.25 0.23 0.23
# V4 0.12 0.11 0.12 0.10
# V5 0.01 0.06 0.04 0.08
# -----------------------------------------------------------
# mydf[[2]]: 15
# 3 6 9 12
# V1 10.00 15.00 20.00 25.00
# V3 0.25 0.23 0.23 0.24
# V4 0.11 0.10 0.13 0.09
# V5 0.07 0.02 0.05 0.05

上面的结果是一个列表,它的类是by。如果您在其上使用 unclass,它将类似于 split + lapply 方法。

关于r - 如何在列表的元素中存储多个向量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25181007/

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