Hello, I am trying to fi a weibull distribution to a list of frequency data, and I am using the following code in SAS 9.4 proc univariate data=data1; var group; freq count; histogram / weibull (Theta=est) midpoints=1 to 28 by 1; run; I got my parameter estimates however SAS did not give me any Goodness of fit statistics. Is there a specific coding that allows me to get one? Thank you
... View more