其他分享
首页 > 其他分享> > R语言中 trunc()、ceiling()、floor()、round() 函数

R语言中 trunc()、ceiling()、floor()、round() 函数

作者:互联网

 

001、floor  向下取整

floor(5.3435)
floor(3.8735)

 

 

002、round  四舍五入取值

round(5.3435)                ## 默认保留小数点后0位
round(5.9435)
round(5.3435, digits = 2)    ## 保留小数点后2位
round(5.9435, digits = 3)    ## 保留三位

 

 

003、celing 进位

ceiling(5.3435)          ## 进位
ceiling(5.9435)

 

 

004、trunc 直接截断

floor(-2.3)       ## 向下取整
trunc(-2.3)       ## 直接截断

 

标签:ceiling,floor,##,5.9435,round,5.3435,trunc
来源: https://www.cnblogs.com/liujiaxin2018/p/16634527.html