在 SAS 中,当我使用以下代码时,我的 rtf 文件会显示我想要的所有内容。但是在“结果 - Sas 报告”中,每个标记都是一个圆圈(尽管它们都是不同的颜色)。如何更改它,使其看起来与 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;