I want to know if there is any possibility to change the round method of the summary r function for values like that:
> mean(c(1, 12,28,30, 34,25,35, 40))
[1] 25.625
> summary(c(1, 12,28,30, 34,25,35, 40))
Min. 1st Qu. Median Mean 3rd Qu. Max.
1.00 21.75 29.00 25.62 34.25 40.00
In the summary function, I want the mean to be rounded as 25.63 and not 25.62
have a nice day!