I have an individual level dataset with around 11 million observations. For each individual, I have data on individual's occupation (occ), hours worked in occupation (hours) and weeks worked (weeks).
I create a variable which measures labour supply as labour_supply = weeks * hours
Next, I find the total labour supply by occupation using the command: collapse (sum) labour_supply, by(occ)
However, in doing so, I lose precision as STATA shows the labour supply by occupation in scientific notation. Moreover, labour supply by occupation is shown with varying precision levels. For example, I get 1.41e+09 for occupation X and 5.02e+07 for occupation Y.
Is there a way around to get the exact values for this variable?
I create a variable which measures labour supply as labour_supply = weeks * hours
Next, I find the total labour supply by occupation using the command: collapse (sum) labour_supply, by(occ)
However, in doing so, I lose precision as STATA shows the labour supply by occupation in scientific notation. Moreover, labour supply by occupation is shown with varying precision levels. For example, I get 1.41e+09 for occupation X and 5.02e+07 for occupation Y.
Is there a way around to get the exact values for this variable?

Comment