Hi SAS Community,
I’m currently working on a project that involves 20 imputed datasets, and I need to perform group-based trajectory modeling using PROC TRAJ (MODEL zip) . I’ve found limited reference publications on using PROC TRAJ with multiple imputations and would greatly appreciate any advice or guidelines.
Here are my specific questions:
Thank you so much in advance for your help! Looking forward to hearing your insights.
If PROC TRAJ support BY statement, you could use it by
proc traj data=have; by _imputed_; ..... run;
Or you can split this dataset into many sub-dataset and run it under proc traj:
proc traj data=have(where=(_imputed_=1)); ..... run; proc traj data=have(where=(_imputed_=2)); ..... run;
Yes. You should as I showd above.
Once you could get StdErr of Parameters , you could get POOLED parameters.
proc mianalyze data=Binomial; modeleffects _BIN_; stderr E_BIN; run;
Check UCLA website:
https://stats.oarc.ucla.edu/sas/seminars/multiple-imputation-in-sas/mi_new_1/
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.