此问题已在此处有答案:
Replace values if two columns match in R(2个答案)
Compare Columns and replace Values in R(2个答案)
Compare two pairs of columns from one dataframe to detect mismatches and show the value from another column in the same row(2个答案)
Compare two columns and replace the value in column 2 with NA if same as column 1(1个答案)
if values of two columns are equal, change the value of resultant column to NA and if not keep to original value of resultant column - using R(2个答案)
5天前关闭。
| newcolumn|新闻专栏2|
| --|--|
| 小区A|小区A|
| 小区3|小区4|
| 小区X|小区X|
如何让这个顶级的例子变成:
| newcolumn|新闻专栏2|
| --|--|
| 小区A| NA|
| 小区3|小区4|
| 小区X| NA|
另外,是否可以返回一个可以迭代的vector/list?在你们的帮助下,我可能很快就会填补空白。
比如说,
c(1,3)
我知道这不起作用,因为代码会问,本质上,“整个列匹配吗?”“.
我猜回答这个问题需要一个for循环。
ifelse(all(DATA$newcolumn == DATA$newcolumn2), DATA$newcolumn2 = " ", DATA$newcolumn)
1条答案
按热度按时间bzzcjhmw1#
在
Reduce
中使用==
。