Hello! I am a relatively new SAS user and have tried to search forums for help so hope that someone here may be able to help. I have a dataset with repeated measures of a continuous variable at two timepoints (pre vs. post), 1 categorical IV (group, 2 levels), and 2 covariates (race=categorical, 3 levels, and age = continuous). I am looking for parameter estimates collapsed across both timepoints for both the class group and both covariates. When I use the solutions statement, SAS produces the parameter estimates but there are two per variable, one at the pre timepoint and one at the post timepoint, which is not what I want. Any help is appreciated, thanks! example code: PROC GLM data = data1; CLASS group race; MODEL DV_pre DV_post = group race age /solution; REPEATED Time 2 / summary; RUN; General data structure: ID# Group Age Race Pre Post 1 1 30 0 5 4 2 2 44 1 5 3 3 1 50 2 4 2
... View more