Hi Everyone,
I am using survey data to produce a set of cross tabs where I show, for the various countries and labour activity statuses that I have in my dataset the average risk of poverty.
I am using the command below for Tabout:
The Code runs smoothly but only shows the Sample size and not the Population size.
By playing around with the Tabout tutorial I was able to reproduce Population size but not Sample size by running the code below:
Do you have any suggestions for obtaining both Sample size and Population size in the same table?
Thanks for your help
Luca
I am using survey data to produce a set of cross tabs where I show, for the various countries and labour activity statuses that I have in my dataset the average risk of poverty.
I am using the command below for Tabout:
Code:
tabout country L_act_status using CrossTabs.xls if year==`y'& age_20_64==1, append style(xlsx) sum /// svy cells(mean arop se lb ub) format(4c 4c 4c 4c) sebnone dpc npos(col) nlab(Sample size) h1(XXX for `y')
By playing around with the Tabout tutorial I was able to reproduce Population size but not Sample size by running the code below:
Code:
tabout country L_act_status using CrossTabs.xls if year==`y'& age_20_64==1, append style(xlsx) sum /// svy cells(mean arop se lb ub) format(4c 4c 4c 4c) sebnone dpc pop nwt(DB090) h1(XXX `y')
Thanks for your help
Luca