既存のデータ フレーム「my_data」から新しいデータ フレーム「new_data」を作成するサンプル コードがあります。
new_data = NULL
n = 10 #this number correspond to the number of rows in my_data
conditions = c("Bas_A", "Bas_T", "Oper_A", "Oper_T") # the vector characters correspond to the target column names in my_data
for (cond in conditions){
for (i in 1:n){
new_data <- rbind(new_data, c(cond, my_data$cond[i]))
}
}
問題は、my_data$cond
(cond は変数であり、列名ではない) が受け入れられないことです。
ドル記号の後に変数値を使用して、データ フレームの列を呼び出すにはどうすればよいですか?