舍入到指定位数的R数字
在R中,可以使用round()
函数将数字舍入到指定位数。例如,以下代码将数字5.5舍入到2位小数:
round(5.5)
输出结果为:
[1] 6.0
此外,还可以使用round_to_two_decimal_places()
函数来舍入到2位小数,如下所示:
round_to_two_decimal_places(5.5)
输出结果为:
[1] 6.0
需要注意的是,round()
函数和round_to_two_decimal_places()
函数都不会将小数部分舍入到0,如果需要将小数部分舍入到0,可以使用floor()
函数或round()
函数与-sign()
函数组合使用,例如:
floor(5.5) # 输出结果为 5
round(-5.5) # 输出结果为 -6.0
领取专属 10元无门槛券
手把手带您无忧上云