29

我在 R 中有一个列表:

a <- list(n1 = "hi", n2 = "hello")

我想附加到这个命名列表,但名称必须是动态的。也就是说,它们是从字符串创建的(例如:paste("another","name",sep="_")

我试过这样做,但不起作用:

c(a, parse(text="paste(\"another\",\"name\",sep=\"_\")=\"hola\"")

这样做的正确方法是什么?最终目标只是附加到此列表并动态选择我的名字。

4

2 回答 2

35

您可以只使用带有双括号的索引。以下任何一种方法都应该有效。

a <- list(n1 = "hi", n2 = "hello")
val <- "another name"
a[[val]] <- "hola"
a
#$n1
#[1] "hi"
#
#$n2
#[1] "hello"
#
#$`another name`
#[1] "hola"

 a[[paste("blah", "ok", sep = "_")]] <- "hey"
 a
#$n1
#[1] "hi"
#
#$n2
#[1] "hello"
#
#$`another name`
#[1] "hola"
#
#$blah_ok
#[1] "hey"
于 2012-05-16T04:35:19.030 回答
14

您可以使用setNames动态设置名称:

a <- list(n1 = "hi", n2 = "hello")
c(a,setNames(list("hola"),paste("another","name",sep="_")))

结果:

$n1
[1] "hi"

$n2
[1] "hello"

$another_name
[1] "hola"
于 2012-05-16T04:39:25.290 回答