nHi everyone. This is my first post. First of all, it is good to be part of this Community! I have a problem with sas coding. I want to fit a distribution (eg Normal or Lognormal) to some data and take the percentiles. I am using the following code which is fine. My problem is that i want to extract the P99 of the fitted data at a sas data and not only at the results. PROC UNIVARIATE DATA = WORK.TEMP1 NOPRINT ;*pctldef=5; BY RESERVING_LOB_LOCAL; VAR log_max_incurred; HISTOGRAM log_max_incurred / NOPLOT LOGNORMAL ( W=1 L=1 COLOR=YELLOW ZETA=EST THETA=0 SIGMA=EST); OUTPUT OUT=FINAL2 p99=P99 ; RUN; By doing this i save at the sas data "final2" only the p99 of the actual data and not of the fitted data too. Can you please help me? Thank you very much in advance! Vasilis.
... View more