Skip to content

Commit

Permalink
Corrects a model with the new name for tTest: t_test
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisDrogoul committed Dec 18, 2021
1 parent b70a748 commit 22d0d88
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -43,7 +43,7 @@ global {
list<float> actuals <- dummy collect (each.location.z);
list<float> 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;
}
}
Expand Down

0 comments on commit 22d0d88

Please sign in to comment.