Dear Statalist,
I am using Stata 14 trying to display all significant digits after the -total- or -display- command. For -total-, cformat is limited to a width of 9, so I cannot display a whole number above 999,999,999. I found a workaround using:
summary x
return list
display r(N) * r(mean)
But couldn't get -display- to report the whole number, so had to paste the r(N) and r(mean) values into excel and multiply. Is there a way to display the whole number internally in Stata?
Thanks,
Brent Fulton
I am using Stata 14 trying to display all significant digits after the -total- or -display- command. For -total-, cformat is limited to a width of 9, so I cannot display a whole number above 999,999,999. I found a workaround using:
summary x
return list
display r(N) * r(mean)
But couldn't get -display- to report the whole number, so had to paste the r(N) and r(mean) values into excel and multiply. Is there a way to display the whole number internally in Stata?
Thanks,
Brent Fulton
Comment