pythonbook
pythonbook copied to clipboard
Python adaptation of Danielle Navarro's Learning Statistics with R (http://learningstatisticswithr.com/). Work in progress!
Corrected grammatical errors: That is, you’d like to know something about where the “average” or “middle” of your data lies. The most commonly used measures are the mean, median and...
Under the section https://ethanweed.github.io/pythonbook/05.02-ttest.html#doing-the-test-in-python, you interpret the results from running ttest_1samp and list that you got a p-value of 0.36. This should be corrected to 0.036
Find out what replaces .mad() and update this section
In section 14.3.6. Doing the test in Python, the data are converted from long to wide. But maybe this is just confusing? Maybe I should at least show that you...
The structure of the chapter makes more sense if the examples built on `statsmodels` R-like formulas; most importantly, you can specify models with and without interactions, which cannot be done...
It seems that new references aren't being added to the reference list again.
file:///Users/ethan/Documents/GitHub/pythonbook/Book/_build/html/05.02-ttest.html#fig-swdist
The new solution for having figure captions without double-plotting figures seems to be something like: ``` fig, axes = plt.subplots(1, 2, figsize=(15, 5)) plt.close() from myst_nb import glue glue("myfigure-fig", fig,...