Hi,
I produced a histogram with proc sgplot using this code:
proc sgplot data=work.test;
histogram age_num;
density age_num;
run;
The plot produced is the followed:

As you can see, there are some irregularities for some ages. To validate, I tried to create the same chart using prec freq instead:
proc freq data=work.test;
table age_num /plots=freqplot;
run;
The chart is the following, which, as you can see, is very different, since there are no more irregularities.

So I wonder: how is this possible? Maybe I do not interpret correctly the output produced by the proc sgplot.