I would like to estimate the kernel percentiles from PROC KDE with this code: proc kde data=data_ajust;
univar x_0 / percentiles METHOD=SJPI;
ods output percentiles=P1CDF;
run; But with this code I get the empirical percentiles and not the kernel percentiles. With the following code I can obtain the kernel estimated density, and I can calculate the percentiles with the area under the curve. proc kde data=data_ajust;
univar x_0 / percentiles METHOD=SJPI out=density;
run; I would like to know if it's possible to get the kernel percentiles directly from the PROC KDE or with another method.
... View more