pythonbook icon indicating copy to clipboard operation
pythonbook copied to clipboard

Python adaptation of Danielle Navarro's Learning Statistics with R (http://learningstatisticswithr.com/). Work in progress!

Results 24 pythonbook issues
Sort by recently updated
recently updated
newest added

Thanks for your work on translating the book to use Python! I've found it useful. I wanted to suggest an alternative to the current implementation for calculating "blowouts". Instead of...

change y axis so that it reflects probability rather than counts

In the [Linear regression model checking](https://ethanweed.github.io/pythonbook/05.04-regression.html#model-checking) sections, the functions `get_aic` and `get_aic_bic` are not necessary. The text processing used to extract the AIC value `model.fit().summary().tables[0].as_text().split('\n')[7].split('AIC:')[1].strip()` can be replace with `model.fit().aic`....