Last active
February 24, 2016 01:13
-
-
Save rlabbe/8da2a98d5de181cbd6eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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