Hi everyone, I want to run some Goodness-of-fit tests for several variables, but for every variable the three tests (KS, AD and C-vM) show similar p-values 0.010, 0.005, 0.005 respectively. This would mean that every variable is not normally distributed. However, when looking at Q-Q plot and histograms, not every variable is not normally distributed. It looks like these p-values are default p-values, since for every variable these p-values are the same. This is what I did: proc univariate data=<library.dataset>; var <variables>; histogram /normal; qqplot; run; Can anyone help me? Thank you!
... View more