Предполагается, что 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 = опция).