第一次在这里发布,是R的新手。我希望我做对了。
如何使用R以另一列行的值(只是值)填充新列,条件是第三列行的值。
谢谢!
答案 0 :(得分:0)
您想要这样的东西吗?
for(i in 1:length(df$column1){ #runs the following code for each line
if(df$thirdcolumn[i] > 0){ #if logical TRUE then it runs the next line
df$newcolumn[i] <- df$anothercolumn[i] #gives value of another column to a new column
}
}