标签: r loops dataframe
我有一个467列的数据框。当我想选择特定列时
input <- c("bread", "milk") for (i in 1:length(input)){ flow <- df[input[i]]}
它仅返回“牛奶”列。这个问题有什么解决办法吗?