Hello,
I have a dataset with a categorical outcome variable (strategy) that includes four groups. I also have three continuous (per_capita, unemployment, and hospitalsize) and three dummy variables (ownership, teaching, and membership) to predict the probability of using each of the four strategies. My data is longitudinal and I am using the Generalized Estimation Equation model. Here is my basic model:
proc gee data=paper2.strategy;
Class code year ownership (ref="0") membership (ref="0") teaching (ref="0");
model strategic_group1= per_capita unemployment hospitalsize ownership teaching membership / dist=multinomial link=glogit;
repeated subject= code/ within=year;
run;
My question is how can I conduct post hoc analyses to compare the resulted coefficients among four strategies for both continuous as well as dummy variables?
Thank You!
Related Posts with Post hoc analyses after multi-nominal regression
Help with selecting type of ANOVAHello statalisters, I am trying to perform an analysis on a dataset that contains information on pa…
Calling in SQL through ODBC--String variables & choosing dataHello Statalist , I am using Stata 17 on Windows. I am new to the ODBC process and I am trying to c…
Return how many variables were overwritten (because they had the same name) in a merge?If I merge two datasets and two variables in the datasets had the same name, how can I get Stata to …
Ordering Multiples variablesI am having a dataset in wide format for almost 80 years for 100 countries for about 200 variables. …
Does anyone know a clever way to add R2 to "graph twoway lfit"?I am using the below code to fit a linear regression line, Private_Hospital is a binary variable gr…
Subscribe to:
Post Comments (Atom)
0 Response to Post hoc analyses after multi-nominal regression
Post a Comment