Hi all How can I get y scale as density for a histogram? The histogram statement with proc univariate and proc sgplot support count, proportion and percentage but not density. It seems scale=density is available with proc sgplot, but it does not work with SAS On Demand for Academics. I tried following codes in the PRoC Step. proc univariate; var y; histogram y/yscale=density; run; proc sgplot; histogram y/ scale=density; run; Appreciate an answer. S_pera
... View more