ods graphics on;
proc npar1way edf plots=edfplot D data= T1_emp.T1_empresas_gov_teste1;
class chave;
var vol;
OUTPUT OUT= result_teste_gov1;
run;
ods graphics off; This is the code that i am using. the results are: Kolmogorov-Smirnov Two-Sample
Test (Asymptotic)
D = max |F1 - F2| 1.0000
Pr > D <.0001
D+ = max (F1 - F2) 1.0000
Pr > D+ <.0001
D- = max (F2 - F1) 0.0000
Pr > D- 1.0000
Cramer-von Mises Test for Variable vol
Classified by Variable chave
chave N Summed Deviation
from Mean
Estimado 10 0.83750
Observado 10 0.83750
Cramer-von Mises Statistics
(Asymptotic)
CM 0.083750 CMa 1.675000
Kuiper Test for Variable vol
Classified by Variable chave
chave N Deviation
from Mean
Estimated 10 1.0
Observed 10 0.0
Kuiper Two-Sample Test (Asymptotic)
K 1.000000 Ka 2.236068 Pr > Ka 0.0017
... View more