utils::View显示的数字可以格式化吗?
Can numbers displayed by utils::View be formatted?
在使用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)
在使用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)