Let's say I have some statistics I would like to calculate using the table command (or tabstat for that matter) and I would like to retain the integrity of the underlying data but round the results that get displayed to, say, the nearest hundred or thousand. Is that possible? Looking through all of the documentation on display formats, I think it is not. A data example:
Displays:
When I would like it to display:
Code:
sysuse census.dta, clear table (region) (var), stat(sum pop)
Code:
----------------------------
| Population
--------------+-------------
Census region |
NE | 49,135,283
N Cntrl | 58,865,670
South | 74,734,029
West | 43,172,490
Total | 225,907,472
----------------------------
Code:
----------------------------
| Population
--------------+-------------
Census region |
NE | 49,135,000
N Cntrl | 58,866,000
South | 74,734,000
West | 43,172,000
Total | 225,907,000
----------------------------

Comment