我想问一下是否有办法通过变量引用列表元素名称:
svn co -r 457 https://test.repo.com/branches/1.0.X
svn export --force -r 457 https://test.repo.com/branches/1.0.X ./
答案 0 :(得分:2)
我们可以使用[[
来提取list
元素。
Labels[[ElementName]]
#[1] 1 3 5 7
如果我们使用list
元素的名称,我们使用引号
Labels[['Name']]
#[1] 1 3 5 7
有关详情,请查看?"[["
或?Extract