我试图将名为“Camelot GPS经度”的列中的数值93.2142更改为-93.2142和93.18124更改为-93.18124。这段代码总是出错:
site <- site %>%
mutate("Camelot GPS Longitude" = recode("Camelot GPS Longitude",
93.2142 = -93.2142,
93.18124 = -93.18124))
我看了很多网站,帖子,尝试用各种方法修改我的代码,但我不知道为什么“=”是一个问题。
1条答案
按热度按时间pftdvrlh1#
您需要这些特定值吗?为什么不直接乘以-1呢
位点%突变(
Camelot GPS Longitude
=Camelot GPS Longitude
*-1 <- site %>% mutate(Camelot GPS Longitude
=Camelot GPS Longitude
* -1