Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有以下列表:
My_List <- list(DF, Hair, Names, Numbers)
DF 是一个数据框,其余的是向量。我想从头发向量中获取第三个值。
我想到的第一种方法如下:
My_List[4[3]]
但不幸的是,这不起作用。任何帮助是极大的赞赏。
试试这个小例子。列表中的索引应该完成[[]]以识别列表中的元素,然后[[]]根据位置提取一些值。这里的代码:
[[]]
#Code Mylist <- list(iris,v1=c(1:4),v2=c(1:5),v3=c(1:9))
现在索引以便从第二个对象v1中提取第三个元素Mylist:
v1
Mylist
#Code 2 Mylist[[2]][[3]]
输出:
Mylist[[2]][[3]] [1] 3