BookmarkSubscribeRSS Feed
Frootloops
Calcite | Level 5


Hi all,

Is there a way to output a fitted distribution's statistics in a dataset in proc univariate? (estimated parameters and Kolmogorov-smirnov)

It only gives me the option to output test for normality etc.

What about if you fit a graph other than normal?

Thank you

1 REPLY 1
Lidz
Calcite | Level 5

ods select ParameterEstimates GoodnessOfFit ;

proc univariate data= Test;

var x1;

histogram /Beta

                 normal;

ods output parameterestimates= Param_out

run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1235 views
  • 0 likes
  • 2 in conversation