, , : options('scipen'=+20) and options('digits'=2), round(x,4).
round(x,4) .
Or, you will complete the results of your regression once and save it:
x <- round(x, 4)
... or yes, you should do this every time you show a small amount, if you do not want to store its rounded value. In your case, since you said that small values of almost zero value effectively represent zero, why don't you just round it?
If for some reason you need to keep both the exact and the round version, then do it.
x.rounded <- round(x, 4)
source
share