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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Update

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
  • 1239 views
  • 0 likes
  • 2 in conversation