Skip to content

Instantly share code, notes, and snippets.

@rlabbe
Last active February 24, 2016 01:13
Show Gist options
  • Save rlabbe/8da2a98d5de181cbd6eb to your computer and use it in GitHub Desktop.
Save rlabbe/8da2a98d5de181cbd6eb to your computer and use it in GitHub Desktop.
dbeta (.7, 1, 2)
from scipy.stats import beta
beta(1, 2).pdf(.7) # frozen form, very slow if only calling once!!!!!!
beta.pdf(.7, 1, 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment