Skip to content

Instantly share code, notes, and snippets.

@tugloo1
Created March 23, 2018 21:59
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 tugloo1/0d877a636380485d20a2e7136917ee0c to your computer and use it in GitHub Desktop.
Save tugloo1/0d877a636380485d20a2e7136917ee0c to your computer and use it in GitHub Desktop.
stats
if obs_mean < null_mean:
pval = 2 * (null_vals < obs_mean).mean()
else:
pval = 2 * (null_vals > obs_mean).mean()
pval
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment