计算向量x的log值的指数函数值的绝对值的整数近似值 平常: round(abs(exp((log(x))))) 利用管道符号: library(dplyr) #使用dplyr包功能 x %>% log( ) %>% exp( ) %>% abs( ) %>% round( )