R语言 错误:意外的“=”位于:使用mutate()时

u1ehiz5o  于 2023-06-27  发布在  其他
关注(0)|答案(1)|浏览(359)

我试图将名为“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))

我看了很多网站,帖子,尝试用各种方法修改我的代码,但我不知道为什么“=”是一个问题。

pftdvrlh

pftdvrlh1#

您需要这些特定值吗?为什么不直接乘以-1呢
位点%突变(Camelot GPS Longitude = Camelot GPS Longitude *-1 <- site %>% mutate( Camelot GPS Longitude = Camelot GPS Longitude * -1

相关问题