We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calcul à revoir pour des distributions skewed
The text was updated successfully, but these errors were encountered:
A mon avis la version two-tailed devrait etre celle par défaut.
Sorry, something went wrong.
The statistically correct solution for two-tailed test is to correctly compute the area under the curve for the both sides of the distribution:
q_val_right = best_dist.ppf(0.95, **args) q_val_left = best_dist.ppf(0.05, **args)
p_right = 1 - best_dist.cdf(expr, **args) p_left = best_dist.cdf(expr, **args)
@Claire : please make a test using normal distribution for two-tailed outlier testing
clescoat
No branches or pull requests
Calcul à revoir pour des distributions skewed
The text was updated successfully, but these errors were encountered: