我正在尝试创建一个嵌套列表,其中一个向量中的值成为名称,并且该过程重复进行,直到最后一个存储实际值的向量为止。我当时以为我下面的代码可以用,但是不可以
chips[[toString(aCor[i])]]=list(toString(bCor[i])=list(toString(cCor[i])=list(toString(dCor[i])=eCor[i])))
如果aCor=c(1,2,2,1), bCor=c(4,5,6,4), cCor=c(3,3,2,3), dCor=c(1,4,5,1), eCor=c(1,3,4,7)
结果列表
["1"=["4"=["3"=["1"= 7]]], "2"=["5"=["3"=["4"=3]],"6"=["2"=["5"=4]]]]
$1
$1$4
$1$4$3
$1$4$3$1
[1] 7
$2
$2$5
$2$5$3
$1$4$3$4
[1] 3
$2
$2$6
$2$6$2
$1$6$2$5
[1] 4
对不起,如果期望的列表格式不正确。我不确定最好的方法。 如果有比列表更好的方法,我可以接受建议,我会在python中使用字典,这是我能找到的最能复制它的字典。 我目前收到此错误
Error in parse(text = script) : parse error in text argument: unexpected '=' in function argument before
答案 0 :(得分:2)
我们可以使用lst
或purrr
中的dplyr
(或需要setNames
)来进行分配(:=
)
nm1 <- 'a'
nm2 <- 'b'
dplyr::lst(!! nm1 := lst(!! nm2 := 5))
#$a
#$a$b
#[1] 5
如果我们需要创建嵌套的list
,请使用for
循环
lst1 <- list()
for(i in seq_along(aCor)) {
an <- as.character(aCor[i])
bn <- as.character(bCor[i])
cn <- as.character(cCor[i])
dn <- as.character(dCor[i])
lst1[[an]][[bn]][[cn]][[dn]] <- eCor[[i]]
}
-输出
lst1
#$`1`
#$`1`$`4`
#$`1`$`4`$`3`
#$`1`$`4`$`3`$`1`
#[1] 7
#$`2`
#$`2`$`5`
#$`2`$`5`$`3`
#$`2`$`5`$`3`$`4`
#[1] 3
#$`2`$`6`
#$`2`$`6`$`2`
#$`2`$`6`$`2`$`5`
#[1] 4
aCor <- c(1,2,2,1)
bCor <- c(4,5,6,4)
cCor <- c(3,3,2,3)
dCor <- c(1,4,5,1)
eCor <- c(1,3,4,7)
答案 1 :(得分:1)
这是我最终在akrun的帮助下编写的代码,也是我在IRTFM编写的page上找到的另一个代码。
//Connection Parameters
const MongoClient=require('mongodb').MongoClient
const url = 'mongodb://database:27017'
const dbName='ReviewASP'
module.exports=new Promise((resolve,reject)=>{
//Connecting to already running Database by providing URL
MongoClient.connect(url, {useUnifiedTopology: true },(err,client)=>{
if(err){
console.log('Unable to connect to database')
reject(err)
}
console.log('Connected to database successfully')
const db = client.db(dbName)
resolve(db)
})
})
输出:
require(dplyr)
aCor <- c(1,2,2,1)
bCor <- c(4,5,6,4)
cCor <- c(3,3,2,3)
dCor <- c(1,4,5,1)
eCor <- c(1,3,4,7)
appendList <- function (x, val)
{
stopifnot(is.list(x), is.list(val))
xnames <- names(x)
for (v in names(val)) {
x[[v]] <- if (v %in% xnames && is.list(x[[v]]) && is.list(val[[v]]))
appendList(x[[v]], val[[v]])
else c(val[[v]])
}
x
}
chips <- list()
for(i in seq_along(aCor)) {
an <- as.character(aCor[i])
bn <- as.character(bCor[i])
cn <- as.character(cCor[i])
dn <- as.character(dCor[i])
#chips[[an]]=lst(!! bn := lst(!! cn := lst(!! dn := eCor[i])))
list1=lst(!! an := lst(!! bn := lst(!! cn := lst(!! dn:= eCor[i]))))
chips=appendList(chips,list1)
}
chips