I use Proc severity and proc univariate to estimate my parameters of continuous probability function.
I don't understand why statistics of Kolmogorov Smirnov is different with the two proc.
At the same time, statistics have the same definition in the documentation :
Other statistics like Anderson Darling and Cramer-von Mises are the same.
I'm away from the office so I can't check D’Agostino, R. and Stephens, M. (1986), Goodness-of-Fit Techniques.
However, my guess is that SEVERITY is using an asymptotic test statistic. Under the null hypothesis, sqrt(N)*D converges in distribution to another distribution (called the Brownian bridge). In contrast, UNIVARIATE is probably using table and formulas that describe the distribution of D itself.
For large samples, I would think that the p-values would be similar.
I'm away from the office so I can't check D’Agostino, R. and Stephens, M. (1986), Goodness-of-Fit Techniques.
However, my guess is that SEVERITY is using an asymptotic test statistic. Under the null hypothesis, sqrt(N)*D converges in distribution to another distribution (called the Brownian bridge). In contrast, UNIVARIATE is probably using table and formulas that describe the distribution of D itself.
For large samples, I would think that the p-values would be similar.
You didn't post your code. According to the documentation, the two procedures will be equivalent only when edf=STANDARD is chosen in proc SEVERITY, in the absence of censoring.
To follow up, the main difference seems to be that UNIVARIATE, which does not support censoring, uses one modification of the D statistic, whereas SEVERITY, which does support censoring, uses a slightly different modification.
The PROC SEVERITY formula
D*sqrt(n) + 0.19/sqrt(n))
appears on p. 113 in D'Agostino and Stephens. The formula handles the possibility of censored data and converges to an asymptotic distribution, which is tabulated in Table 4.4 and credited to Koztol and Byar (1975).
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.