我需要为我的值箱计算百分比。但是,当我计算百分比并添加准确性参数时,控制台会出现错误。为了说明我的问题,下面给出了具有相同代码种类的示例。
library(scales)
x <- 235.53
y <- 928.32
proc <- x / y
scales::percent(proc, accurary = 0.01)
都是
scales::percent(proc, accurary = 0.01)
和
percent(proc, accurary = 0.01)
不起作用。
获得以下错误
Error in scales::percent(perc, accuracy = 0.01) :
unused argument (accuracy = 0.01)
预先感谢