标签: r dplyr
是否可以使用dplyr中的recode中的不等式重新编码变量?
x <- 1:10 recode(x,x>5= 11)
我已经环顾四周,无法找到是否可能。
由于
答案 0 :(得分:0)
这是你在找什么?
x[x>5]<-11