r - R2HTML number formatting -
I want to output a data frame using R2 HTML, and remove scientific notation. idea?
You can use the format command:
format ( C (1,10,100) ^ 3, scientific = false)
By chance, I recommend using the xtable
for the table.
Comments
Post a Comment