我有这种代码。
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 行添加颜色的方法。你能帮我吗 ?
答案 0 :(得分:0)
假设filiere
具有值X
和Y
关闭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 =选项)。