我知道可以通过值创建变量。例如描述为here和here。现在我想知道是否有可能以类似的方式创建列表a中的成员变量x的值?
x<-"name"
a<-list( [here should place the value of x to declare the variable "name"]=1:5)
我不会在初始化后搜索更改dimnames的解决方法,因为我喜欢用S4对象初始化来完成。
答案 0 :(得分:0)
我认为你需要这个:
x<-"name"
a<-list()
a[[x]] <- 1:5
> a
$name
[1] 1 2 3 4 5