Hi family,
I hope we are doing well?
I have a data that I want to present the descriptive statistics like frequency in Just one single table contains 2 or more variables.
Below is the command I tried using but it still presented the table as individual variable. this is the command I used.
asdoc tab1 b2 b4 c7 c8, append save(newsham)
I need your help to be able to produce just one table with 4 cariables.
Thank you.
Sham.
I attached the data example.
clear
input byte(Gender telfon schl)
2 2 2
1 2 2
1 2 2
1 2 2
1 2 1
1 2 2
2 2 1
1 2 2
1 2 2
1 2 2
1 2 2
2 2 2
1 2 2
2 2 2
1 2 2
1 2 2
1 2 1
1 1 1
2 2 2
end
label values Gender B2
label def B2 1 "Male", modify
label def B2 2 "Female", modify
label values telfon C7
label def C7 1 "Yes", modify
label def C7 2 "No", modify
label values schl C8
label def C8 1 "Yes", modify
label def C8 2 "No", modify
[/CODE]
I hope we are doing well?
I have a data that I want to present the descriptive statistics like frequency in Just one single table contains 2 or more variables.
Below is the command I tried using but it still presented the table as individual variable. this is the command I used.
asdoc tab1 b2 b4 c7 c8, append save(newsham)
I need your help to be able to produce just one table with 4 cariables.
Thank you.
Sham.
I attached the data example.
clear
input byte(Gender telfon schl)
2 2 2
1 2 2
1 2 2
1 2 2
1 2 1
1 2 2
2 2 1
1 2 2
1 2 2
1 2 2
1 2 2
2 2 2
1 2 2
2 2 2
1 2 2
1 2 2
1 2 1
1 1 1
2 2 2
end
label values Gender B2
label def B2 1 "Male", modify
label def B2 2 "Female", modify
label values telfon C7
label def C7 1 "Yes", modify
label def C7 2 "No", modify
label values schl C8
label def C8 1 "Yes", modify
label def C8 2 "No", modify
[/CODE]
Comment