Userò il test di Kolmogorov-Smirnov per testare la normalità di MYDATA in R. Questo è un esempio di ciò che faccio
ks.test(MYDATA,"pnorm",mean(MYDATA),sd(MYDATA))
Ecco il risultato che mi dà R:
data: MYDATA
D = 0.13527, p-value = 0.1721
alternative hypothesis: two-sided
Warning message:
In ks.test(MYDATA, "pnorm", mean(MYDATA), sd(MYDATA)) :
ties should not be present for the Kolmogorov-Smirnov test
Penso che ci sia un problema, cosa significa "legami" in questo avviso?