I want to compare slope of change for a couple variables and thus am looking to output individuals slopes for a few variables and merge the data sets. However I have had no luck finding how to output individual persons slopes from a proc mixed model.
I am using a tall data set with about 10 observations for each person. The code I am using is like so, and to this I am hoping to add an "output out = slope" type statement.
proc mixed data = ExampleData method=ml;
class Person;
model DV = IV ;
random intercept week /type=un subject=Person;
run ;