feat: add sortie data and perform Kolmogorov-Smirnov test in R script

This commit is contained in:
2025-03-14 10:32:00 +01:00
parent 2236488198
commit c0054114ad

View File

@@ -187,4 +187,7 @@ expected_probs <- diff(pnorm(breaks, mean = moyenne, sd = ecart_type))
# Perform chi-squared test
chitest <- chisq.test(observed_counts, p = expected_probs, rescale.p = TRUE)
print(chitest)
print(chitest)
kstest <- ks.test(poids, "pnorm", mean = moyenne, sd = ecart_type)
print(kstest)