Hi All,
I would like to generate a spaghetti plot for individuals on follow-up (having a continuous outcome) and thereafter overlay an overall line of median (with quartile ranges) providing a summary of the outcome measures at each visit. I would also like to join the median values from baseline to the last visit (have 6 visits).
I can do the spaghetti plot fine without difficulty but I was wondering if someone can point me to a similar example.
My code so far looks like this:
proc sgplot data=ec noautolegend;
series x=years_on_follow_up y=cd4 / group=studyid LINEATTRS=(color=black pattern=1);
reg x=year y=cd4 / nomarkers lineattrs=(color=red);
xaxis label = "Years on follow-up";
yaxis label = "CD4 Count" ;
run;
Any thoughts and suggestions will be appreciated.
Ken