>r[c(1,2,3)]
#the above command will return a list with all three elements of the actual list r as below
[[1]]
[1] 1 2 3 4 5 6 7 8 9 10
$foo
[1] 1
$far
[1] 2
,这与我们试图在屏幕上显示r值时完全相同,这意味着使用单括号返回了一个列表,其中在索引1处我们有10个元素的向量,然后我们有两个名称为foo和far的元素。
我们也可以选择一个索引或元素名作为单个括号的输入。
如:< / p >