SAS で次のコードを使用すると、私の rtf ファイルには、希望どおりのものがすべて表示されます。しかし、'Results - Sas Report' では、すべてのマーカーが円になっています (色はすべて異なります)。rtf ファイルとまったく同じに見えるようにするには、どうすればこれを変更できますか?
%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;