0
名前が変数に格納されているときに、リスト要素を名前で抽出しようとしています。すなわち:R - 名前が変数にあるときにリスト要素を名前で抽出する
myList <- list(a = 1, b = 2, c = 3) ## list definition
## I can extract the second element like this:
myList$b
## but say I have a variable:
to_extract <- "b"
##can I do something like this?
myList$to_extract
ありがとう!
'myList [to_extract]'は完全な要素を取得します。 – Tunn