Hi everyone,
I have a variable which is the number of times that a respondent chooses to refuse the option.
See:
So, 1715 individuals refused 0 time the option, 206 refused one time the option, and so on. I would like to plot the cumulative frequencies (i.e., the "Cum." columns) instead of an histogram from 0 to 12 on the x axis and the frequency on the y axis.
Thank you all !
Gabin.
I have a variable which is the number of times that a respondent chooses to refuse the option.
See:
Code:
. tab Optout Optout | Freq. Percent Cum. ------------+----------------------------------- 0 | 1,715 66.60 66.60 1 | 206 8.00 74.60 2 | 141 5.48 80.08 3 | 105 4.08 84.16 4 | 83 3.22 87.38 5 | 61 2.37 89.75 6 | 52 2.02 91.77 7 | 29 1.13 92.89 8 | 30 1.17 94.06 9 | 15 0.58 94.64 10 | 17 0.66 95.30 11 | 26 1.01 96.31 12 | 95 3.69 100.00 ------------+----------------------------------- Total | 2,575 100.00
Thank you all !
Gabin.
Comment