SAS中的非完整proc箱图

时间:2018-10-18 15:30:33

标签: sas boxplot proc

我有这种代码。

title 'Dispersion de Poids par chaque Produit et filiere';
proc sort data=tClassSASM; by filiere Produit PoidsN; run;
proc boxplot data=tClassSASM; 
    plot PoidsN*Produit/ nohlabel Vref=5,57,177 boxstyle=schematicid;
    label PoidsN='Poids Despersion (g)';
run;

这是输出。但是,无论如何,我都找不到如何删除红色的交叉标题,重新组合标记为红色的变量并为 vref 行添加颜色的方法。你能帮我吗 ? output

1 个答案:

答案 0 :(得分:0)

假设filiere具有值XY

关闭ODS GRAPHICS,以便使用cvref = plot选项。

ods graphics off;

title 'Dispersion de Poids par chaque Produit et filiere';

proc sort data=tClassSASM; 
  by filiere Produit PoidsN; 
run;

proc boxplot data=tClassSASM; 

    * plot PoidsN*Produit/ nohlabel Vref=5,57,177 boxstyle=schematicid;

      plot PoidsN*filiere/ nohlabel Vref=5,57,177 cvref=RED boxstyle=schematicid;

    label PoidsN='Poids Despersion (g)';
run;

如果您希望每个vref都有不同的颜色,则可能还必须使用注释数据(anno =选项)。