I am creating a comparative histograms using the following code. Is there a way to change the color of the histogram bins in this code? proc univariate data = test; CLASS group; VAR score; HISTOGRAM score / midpoints= -11 to 16 by 4; run;
... View more