Hi All,
I am using Stata14 to run a regression on gender differences in in decision to seek care and utilisation of different health services. I have a sample size of 411 households. For the outcome variables, I have a variable called "decision to seek care" which is binary (seek care when sick/not seek care when sick) and utilisation of health facility (formal healthcare/informal healthcare). Then I have a couple of independent variables including sex of household head (male/female), household decisionmaking (sole by household head/joint by head and spouse/spouse only/others), income earning power (head earns more than spouse/spouse earns more than head/spouse and head earn approx the same/spouse earns no income), marital status (single/married/divorced/widowed), gender of sick member (male/female), etc.
I am interested in examining how gender of sick member, household earning and decisionmaking gender differences, and other variables determine the outcome variables seeking care when sick, and using formal/informal care. The decisionmaking variables are only important when households are headed by a married/live-in individual. How do I perform the regression analyses since only a subsample of households are married. The figures below provide an example of the distribution of my variable across marital status and household dynamics. To avoid looking at only married/divorced households (n=223), how else can I run the regression analyses? Is there a way to use interactions between marital status and hh_earnpower and hh_desmaker? I am not sure since all the interactions will not provide a useful information I believe.
Your advice would be most appreciated!
The code I have used is
I am using Stata14 to run a regression on gender differences in in decision to seek care and utilisation of different health services. I have a sample size of 411 households. For the outcome variables, I have a variable called "decision to seek care" which is binary (seek care when sick/not seek care when sick) and utilisation of health facility (formal healthcare/informal healthcare). Then I have a couple of independent variables including sex of household head (male/female), household decisionmaking (sole by household head/joint by head and spouse/spouse only/others), income earning power (head earns more than spouse/spouse earns more than head/spouse and head earn approx the same/spouse earns no income), marital status (single/married/divorced/widowed), gender of sick member (male/female), etc.
I am interested in examining how gender of sick member, household earning and decisionmaking gender differences, and other variables determine the outcome variables seeking care when sick, and using formal/informal care. The decisionmaking variables are only important when households are headed by a married/live-in individual. How do I perform the regression analyses since only a subsample of households are married. The figures below provide an example of the distribution of my variable across marital status and household dynamics. To avoid looking at only married/divorced households (n=223), how else can I run the regression analyses? Is there a way to use interactions between marital status and hh_earnpower and hh_desmaker? I am not sure since all the interactions will not provide a useful information I believe.
Your advice would be most appreciated!
The code I have used is
Code:
*regression for facility type logistic facility_type gender_hhead i.hh_earnpower i.hh_desmaker gender_sick cost_care no_adltmale no_adultfmle hhead_emplystat i.head_edulvl i.marital_stat *regression for sick and no care logistic sick_nocare gender_hhead i.hh_earnpower i.hh_desmaker gender_sick cost_care no_adltmale no_adultfmle hhead_emplystat i.head_edulvl i.marital_stat
Code:
des maker in hhold on monetary expenditure marital status respondent husband/w jointly others Total never married 26 1 0 7 34 living with spouse 75 51 89 0 215 widowed 148 0 4 2 154 divorced/separated 8 0 0 0 8 Total 257 52 93 9 411
Code:
HH head earning power marital status More than Less than About the same Spouse earns no income Don’t know Total never married 0 0 0 0 34 34 living with spouse 109 64 37 3 2 215 widowed 0 0 0 0 154 154 divorced/separated 1 0 0 2 5 8 Total 110 64 37 5 195 411
Comment