Skip to content

Instantly share code, notes, and snippets.

@khozzy
Last active February 19, 2016 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khozzy/5bc62981a748803c9d75 to your computer and use it in GitHub Desktop.
Save khozzy/5bc62981a748803c9d75 to your computer and use it in GitHub Desktop.
PP_Hypothesis_Testing_Case_1
from scipy.stats import binom
X = binom(15, 0.9)
p_val = X.cdf(11)
print("p_value: {}".format(p_val))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment