使用R的View()
函数时,是否可以控制数字格式?我想将数值输出限制为类似于%4.2f
(使用sprint时)。有没有办法做到这一点?
最佳答案
看这个:
X <- data.frame(a = c(921.131331,22.23523523, 3.5325), b = c(11.1435, 7.35, 8))
num.of.decimals <- 2
View(format(X, digits = num.of.decimals + 1))
要么:
X <- data.frame(a = c(921.131331,22.23523523, 3.5325), b = c(11.1435, 7.35, 8))
num.of.decimals <- 2
options(digits = num.of.decimals + 1)
View(X)