Based on the summary statistics using, the mode is 0. In that case, shouldn't the histogram reflect 0 as the highest frequency? *summary stats;
proc means data= libref.data2 mean std var min max n median mode;
run;
*histogram;
proc univariate data= libref.data2;
histogram;
run;
... View more