我在使用小数点时遇到麻烦。我有一个数字向量,例如:
x <- c(400000, 500000, 100000, 97500)
我想像这样翻动他们
x <- c(4000.00, 5000.00, 1000.00, 975.00)
我尝试过使用round
,format
和options
之类的命令,但是它们所做的只是在这些数字上添加更多的零。如何更改向量中的小数位?
谢谢!
答案 0 :(得分:0)
您可以使用函数formatC()
formatC(as.numeric(x/100), format = 'f', flag='0', digits = 2)