当第三列的值填充新列中的另一列的值

时间:2019-11-12 01:15:52

标签: r lapply summarize

第一次在这里发布,是R的新手。我希望我做对了。

如何使用R以另一列行的值(只是值)填充新列,条件是第三列行的值。

谢谢!

1 个答案:

答案 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
  }
}