Last active
May 31, 2021 06:15
-
-
Save michelkana/f03cbea2f0c701690649dd3d41e3ace4 to your computer and use it in GitHub Desktop.
aic_vaccines.py
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
# akaike information criterion | |
aic_A = 2*5 - 2*math.log(ml_A) | |
aic_B = 2*5 - 2*math.log(ml_B) | |
print("AIC for Vaccine A: {:.2f}".format(aic_A)) | |
print("AIC for Vaccine B: {:.2f}".format(aic_B)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment