I have to create five quintiles from monthly expenditure data. I used the following code
xtile quintile=expenditure [aw=sample weights], n(5)
I also made without weights but both gave un usually low % for second quintile. It looks like this:
5 quantiles |
of mpce | Freq. Percent Cum.
------------+-----------------------------------
1 | 30,205,892 32.10 32.10
2 | 9,371,869 9.96 42.06
3 | 18,560,534 19.73 61.79
4 | 17,351,454 18.44 80.23
5 | 18,604,018 19.77 100.00
------------+-----------------------------------
Total | 94,093,767 100.00
.
what should I do?
xtile quintile=expenditure [aw=sample weights], n(5)
I also made without weights but both gave un usually low % for second quintile. It looks like this:
5 quantiles |
of mpce | Freq. Percent Cum.
------------+-----------------------------------
1 | 30,205,892 32.10 32.10
2 | 9,371,869 9.96 42.06
3 | 18,560,534 19.73 61.79
4 | 17,351,454 18.44 80.23
5 | 18,604,018 19.77 100.00
------------+-----------------------------------
Total | 94,093,767 100.00
.
what should I do?
Comment