I am getting the mean, max and min of a column a by factors b
tapply(df$a,df$b,summary)
However, I want to have the numbers in Scientific format. e.g. 4.42e+03
How can I do it?
I am getting the mean, max and min of a column a by factors b
tapply(df$a,df$b,summary)
However, I want to have the numbers in Scientific format. e.g. 4.42e+03
How can I do it?