我想在数据框中同时替换多个列值。我想将2比1改为1比2。
data=data.frmae(store=c(122,323,254,435,654,342,234,344)
,cluster=c(2,2,2,1,1,3,3,3))
我的代码中的问题是在它改变2到1之后,它将这些1改为2。 我可以用dplyr或某事吗?谢谢 所需数据设置如下
store cluster
122 1
323 1
254 1
435 2
654 2
342 3
234 3
344 3