I am using Stata 17.
I have three variable to work with. These are the variables:
I am using this code for table generation:
Now I need to modify my collection layout something like this. Basically I want to put mean and sd side by side.
I have three variable to work with. These are the variables:
Code:
q1_3 q6_2_achievement_red q6_2_target_red Nari Moitree 54 0 Shimantik 32 14 PSTC 22 0 Nari Moitree 86 214 PSTC 60 41
Code:
table (q1_3),nototals stat(frequency) stat(mean q6_2_achievement_red q6_2_target_red) stat(sd q6_2_achievement_red q6_2_target_red)
Frequency | q6_7_achievement_Mean | q6_7_achievement_sd | q6_7_target_Mean | q6_7_target_sd | |
q1_3 Select PA NGO: | |||||
Shimantik | |||||
BAPSA |
Comment