Greetings,
I would want generate a dtable that displays the proportion and it's 95% Confidence Intervals of the prorpotions for each categorical variable:
Many Thanks
Robert
I would want generate a dtable that displays the proportion and it's 95% Confidence Intervals of the prorpotions for each categorical variable:
Code:
* Example generated by -dataex-. For more info, type help dataex clear input long marital_status2 byte age_first_sex long gender 3 17 1 2 17 1 1 16 1 2 16 2 2 18 2 2 19 1 2 14 2 2 18 2 2 20 2 2 17 1 end label values marital_status2 marital_status2 label def marital_status2 1 "Never Married", modify label def marital_status2 2 "Married/Living with partner", modify label def marital_status2 3 "Divorced/Widow", modify label values gender gender_list label def gender_list 1 "male", modify label def gender_list 2 "female", modify
Robert
Comment