精选优质文档-倾情为你奉上R语言常用函数数学函数:1、round() #四舍五入例:x - c(3.1416, 15.377, 269.7)round(x, 0) #保留整数位round(x, 2) #保留两位小数round(x, -1) #保留到十位2、signif() #取有效数字(跟学过的有效数字不是一个意思)例:略3、trunc() #取整floor() #向下取整ceiling() #向上取整例:xx - c(3.60, 12.47, -3.60, -12.47)trunc(xx)floor(xx)ceiling(xx)4、 logb(a, b) #以b为底的对数,省略b表示自然对数log() #自然对数log10() #以10为底的常用对数例:logb(8, 2)log(8); logb(8)log10(100); logb(100, 10)5、sqrt() #平方根exp() #指数6、sin() #正弦cos() #余弦tan() #正切asin()