Guest User

Untitled

a guest
Dec 11th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. proc univariate data=Work.SortTempTableSorted;
  2. ODS select "Goodness of Fit";
  3. var price_change_sd;
  4.  
  5. histogram price_change_sd / normal(mu=est sigma=est)
  6. gamma(alpha=est sigma=est theta=0)
  7. lognormal(sigma=est theta=0 zeta=est)
  8. weibull(c=est sigma=est theta=0);
  9. by has_activity;
  10. run;
Add Comment
Please, Sign In to add comment