要約すると、いくつかの txt ファイルに保存されている大量のデータをインポートするためのスクリプトがあります。単一ファイルでは、すべての行が同じテーブルに配置されるわけget
ではありません (DF は現在 DT に切り替わります)。そのため、ファイルごとに、同じ DF、 DFに属するすべての行、およびその行を選択しassign
ます。
たとえば、table1 という名前の DF を初めて作成するときは、次のようにします。
name <- "table1" # in my code the value of name will depend on different factors
# and **not** known in advance
assign(name, someRows)
次に、実行中に、私のコードは (他のファイルで) table1 データ フレームに配置される他の行を見つけることがあります。
name <- "table"
assign(name, rbindfill(get(name), someRows))
私の質問は次のとおりですassign(get(string), anyObject)
。プログラムで割り当てを行うための最良の方法はありますか? ありがとう
編集:
これが私のコードの簡略化されたバージョンです:(各項目は1つのテキストファイルdataSource
の結果です)read.table()
set.seed(1)
#
dataSource <- list(data.frame(fileType = rep(letters[1:2], each=4),
id = rep(LETTERS[1:4], each=2),
var1 = as.integer(rnorm(8))),
data.frame(fileType = rep(letters[1:2], each=4),
id = rep(LETTERS[1:4], each=2),
var1 = as.integer(rnorm(8))))
# # #
#
library(plyr)
#
tablesnames <- unique(unlist(lapply(dataSource,function(x) as.character(unique(x[,1])))))
for(l in tablesnames){
temp <- lapply(dataSource, function(x) x[x[,1]==l, -1])
if(exists(l)) assign(l, rbind.fill(get(l), rbind.fill(temp))) else assign(l, rbind.fill(temp))
}
#
#
# now two data frames a and b are crated
#
#
# different method using rbindlist in place of rbind.fill (faster and, until now, I don't # have missing column to fill)
#
rm(a,b)
library(data.table)
#
tablesnames <- unique(unlist(lapply(dataSource,function(x) as.character(unique(x[,1])))))
for(l in tablesnames){
temp <- lapply(dataSource, function(x) x[x[,1]==l, -1])
if(exists(l)) assign(l, rbindlist(list(get(l), rbindlist(temp)))) else assign(l, rbindlist(temp))
}