別のデータフレームの情報に基づいてデータフレームを作成しようとしています。
最初のデータフレーム (base_mar_bop) には次のようなデータがあります。
201301|ABC|4
201302|DEF|12
私の願いは、これから16行のデータフレームを作成することです:
4 times: 201301|ABC|1
12 times: 201302|DEF|1
実行に時間がかかるスクリプトを作成しました。アイデアを得るために、最終的なデータフレームには約 200 万行があり、ソース データフレームには約 10,000 行あります。データの機密性のため、データフレームのソースファイルを投稿できません。
このコードを実行するには時間がかかるため、PHP で実行することにしました。1 分もかからずに実行され、作業が完了し、txt ファイルに書き込み、txt ファイルを R にインポートしました。
なぜRがそんなに時間がかかるのか、私には手がかりがありません..それは関数の呼び出しですか? ネストされたforループですか?私の観点からは、そこには計算集約的なステップはそれほど多くありません。
# first create an empty dataframe called base_eop that will each subscriber on a row
identified by CED, RATEPLAN and 1
# where 1 is the count and the sum of 1 should end up with the base
base_eop <-base_mar_bop[1,]
# let's give some logical names to the columns in the df
names(base_eop) <- c('CED','RATEPLAN','BASE')
# define the function that enables us to insert a row at the bottom of the dataframe
insertRow <- function(existingDF, newrow, r) {
existingDF[seq(r+1,nrow(existingDF)+1),] <- existingDF[seq(r,nrow(existingDF)),]
existingDF[r,] <- newrow
existingDF
}
# now loop through the eop base for march, each row contains the ced, rateplan and number of subs
# we need to insert a row for each individual sub
for (i in 1:nrow(base_mar_eop)) {
# we go through every row in the dataframe
for (j in 1:base_mar_eop[i,3]) {
# we insert a row for each CED, rateplan combination and set the base value to 1
base_eop <- insertRow(base_eop,c(base_mar_eop[i,1:2],1),nrow(base_eop))
}
}
# since the dataframe was created using the first row of base_mar_bop we need to remove this first row
base_eop <- base_eop[-1,]