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.
名前付きの値のリストがあります:
myList <- list('A' = 1, 'B' = 2, 'C' = 3)
値を持つベクトルが欲しい1:3
1:3
関数を定義せずに値を抽出する方法がわかりません。私が知らないもっと簡単な方法はありますか?
library(plyr) myvector <- laply(myList, function(x) x)
myList$Values名前を取り除いてベクトルとして返すようなものはありますか?
myList$Values
引数とともに使用unlistしuse.names = FALSEます。
unlist
use.names = FALSE
unlist(myList, use.names=FALSE)
unlistこれは、 beforeを使用して実行できますas.vector。結果は、パラメーターを使用した場合と同じuse.names=FALSEです。
as.vector
use.names=FALSE
as.vector(unlist(myList))