My first post to SAS communities... I want the fitted data (red dots) in the scatterplot below to be a line rather than a set of dots. I don't see a way an option within the scatter statement to change the circles to lines. Any suggestions? (My code below.) proc sgplot data=pred1; scatter x=eucdist y= HTp; *blue circles; scatter x=eucdist y= HTp_pred; *red circles; run;
... View more