Home Forums ASDOC : Easy Publication Quality Tables in Stata Asdoc tabulate–showing statistics, rounding decimals Reply To: Asdoc tabulate–showing statistics, rounding decimals

Attaullah Shah
Keymaster
Post count: 69

Prerak
You can use option dec() to control the number of decimal points. See these examples

Default: three decimal points

sysuse auto
asdoc table foreign rep78, c(mean price)

Two decimal points

sysuse auto
asdoc table foreign rep78, c(mean price) dec(2)

One decimal point

sysuse auto
asdoc table foreign rep78, c(mean price) dec(1)