diff --git a/ummisco.gaml.extensions.stats/models/Statistics/Regression.gaml b/ummisco.gaml.extensions.stats/models/Statistics/Regression.gaml index 0eb5f13774..08bd3814b6 100644 --- a/ummisco.gaml.extensions.stats/models/Statistics/Regression.gaml +++ b/ummisco.gaml.extensions.stats/models/Statistics/Regression.gaml @@ -43,7 +43,7 @@ global { list actuals <- dummy collect (each.location.z); list predictions; ask dummy { predictions <+ predict(location_fct, [location.x,location.y]); } - float p_value <- tTest(actuals,predictions); + float p_value <- t_test(actuals,predictions); write "p value : " + p_value; } }