1

在 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;
4

1 回答 1

1

您的问题是您没有将样式命令添加到当前的 HTML 目标(假设您在 9.3+ 中,这是 Results 输出的内容)。

您可以轻松地覆盖它。请注意我添加的额外一行(该ods html行)。我没有指定文件的位置 - 这样它只会覆盖当前选项而不更改目标。

%modstyle(parent= statistical, name= mystyle, type= CLM,
colors= red green blue purple,
markers= star plus circle square);

ods rtf file="c:\temp\scatterplot.rtf" style=mystyle;
ods html style=mystyle;
proc sgplot data=sashelp.class;
   scatter x=height y=weight /group=age;
run;
ods rtf close;
于 2015-08-20T20:24:33.083 回答