In SAS, when I use the following code, my rtf file shows everything like I want it to be. But in 'Results - Sas Report' every marker is a circle (although they are all different colors). How can I change this, so it looks exactly the same as in the rtf file?
%modstyle(parent= statistical, name= mystyle, type= CLM,
colors= red green blue purple,
markers= star plus circle square);
ods rtf file=".../scatterplot.rtf" style=mystyle;
proc sgplot data=datafile;
scatter y=y x=x /group=groups;
run;
ods rtf close;