Hello, Using SAS 9.4. I am creating a line graph of the average satisfaction score for a group of people. Is it possible to have the number of people (n) who contributed a score displayed on the line? Meaning I want to see essentially the number of people contributing a score and not the acutal average across the multiple time points. Below is a copy of my code, I know how to put the average at each time point on the line but am not sure how to put the number of respondents or if that is even possible. Thank you PROC SGPLOT DATA = have; where event_name = 'A' or 'G' or 'L' or 'M' or 'N'; SERIES X = event_name Y = AVG_SATISTFACTION / group= failure datalabel = AVG_SATISTFACTION MARKERS LINEATTRS = (THICKNESS = 2); TITLE 'Average Satistfaction by Failure'; yaxis label = 'Average Satistfaction Captured'; RUN;
... View more