From 7900c2ccd28e885104b97e6acc9902834e8c2b1f Mon Sep 17 00:00:00 2001 From: ethanweed Date: Fri, 3 May 2024 14:56:04 +0200 Subject: [PATCH] Update documentation --- 05.05-anova2.html | 178 ++++++++++++++++++++-- _sources/05.05-anova2.ipynb | 287 +++++++++++++++++++++++++++++++++--- searchindex.js | 2 +- 3 files changed, 434 insertions(+), 33 deletions(-) diff --git a/05.05-anova2.html b/05.05-anova2.html index 7ccd69d4..ea3863ce 100644 --- a/05.05-anova2.html +++ b/05.05-anova2.html @@ -2309,8 +2309,8 @@

17.5.2. ANOVA with binary factors as a r # Here we define our model. -model = ols('grade ~ attend + reading', data=rtfm2).fit() -sm.stats.anova_lm(model, typ=2).round(4) +model = ols('grade ~ attend + reading', data=rtfm1).fit() +sm.stats.anova_lm(model, typ=2).round(3) @@ -2344,15 +2344,15 @@

17.5.2. ANOVA with binary factors as a r attend 648.0 1.0 - 21.6000 - 0.0056 + 21.600 + 0.006 reading 1568.0 1.0 - 52.2667 - 0.0008 + 52.267 + 0.001 Residual @@ -2422,6 +2422,12 @@

17.5.2. ANOVA with binary factors as a r +

As you can see, the intercept term \(b_0\) acts like a kind of “baseline” grade that you would expect from those students who don’t take the time to attend class or read the textbook. Similarly, \(b_1\) represents the boost that you’re expected to get if you come to class, and \(b_2\) represents the boost that comes from reading the textbook. In fact, if this were an ANOVA you might very well want to characterise \(b_1\) as the main effect of attendance, and \(b_2\) as the main effect of reading! In fact, for a simple \(2 \times 2\) ANOVA that’s exactly how it plays out.

+

Okay, now that we’re really starting to see why ANOVA and regression are basically the same thing, let’s actually run our regression using a regression function to convince ourselves that this is really true. And this brings us to the first reason for using statsmodels for this example rather than pingouin. If you look back at the code we used to run our ANOVA, you will see that it was this:

+

model = ols('grade ~ attend + reading', data=rtfm2).fit() +`sm.stats.anova_lm(model, typ=2).round(4)```

+

That is to say, we already ran a regression! Our variable model literally is a linear regression, and all we did with sm.stats.anova_lm was dress up the results in an ANOVA costume[7]

+

Let’s take a closer look at the output of that regression we did. statsmodels spits out a lot of information, but I just want to zoom in on the part that is relevant for us now, which can be found like this:

model.summary().tables[1]
@@ -2435,19 +2441,167 @@ 

17.5.2. ANOVA with binary factors as a r

- + - + - + - +
coef std err t P>|t| [0.025 0.975] coef std err t P>|t| [0.025 0.975]
Intercept 43.5000 3.354 12.969 0.000 34.878 52.122Intercept 43.5000 3.354 12.969 0.000 34.878 52.122
attend[T.yes] 18.0000 3.873 4.648 0.006 8.044 27.956attend 18.0000 3.873 4.648 0.006 8.044 27.956
reading[T.yes] 28.0000 3.873 7.230 0.001 18.044 37.956reading 28.0000 3.873 7.230 0.001 18.044 37.956
+

There’s a few interesting things to note here. First, notice that the intercept term is 43.5, which is close to the “group” mean of 42.5 observed for those two students who didn’t read the text or attend class. Second, notice that we have the regression coefficient of \(b_1 = 18.0\) for the attendance variable, suggesting that those students that attended class scored 18% higher than those who didn’t. So our expectation would be that those students who turned up to class but didn’t read the textbook would obtain a grade of \(b_0 + b_1\), which is equal to \(43.5 + 18.0 = 61.5\). Again, this is similar to the observed group mean of 62.5. You can verify for yourself that the same thing happens when we look at the students that read the textbook.

+

Actually, we can push a little further in establishing the equivalence of our ANOVA and our regression. Look at the \(p\)-values associated with the attend variable and the reading variable in the regression output. They’re identical to the ones we encountered earlier when running the ANOVA. This might seem a little surprising, since the test used when running our regression model calculates a \(t\)-statistic and the ANOVA calculates an \(F\)-statistic. However, if you can remember all the way back to the chapter on probability, I mentioned that there’s a relationship between the \(t\)-distribution and the \(F\)-distribution: if you have some quantity that is distributed according to a \(t\)-distribution with \(k\) degrees of freedom and you square it, then this new squared quantity follows an \(F\)-distribution whose degrees of freedom are 1 and \(k\). We can check this with respect to the \(t\) statistics in our regression model. For the attend variable we get a \(t\) value of 4.648. If we square this number we end up with 21.604, which is identical to the corresponding \(F\) statistic in our ANOVA. I love it when a plan comes together.

+

I mentioned there was a second reason I didn’t use pingouin for this example. This is because as far as I can tell, when performing an ANOVA pingouin always calculated not only the main effects, but also the interaction, thus giving slightly different results. In order to keep things simple (and maintain parity with LSR, I decided to go with statsmodels and not specify any interactions. Just to be sure though, let’s run the ANOVA with pingouin, and then run the regression in statsmodels with a little ANOVA dressing on top, and confirm that we get the same result:

+
+
+
pg.anova(dv='grade', between=['attend', 'reading'], data=rtfm1).round(3)
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SourceSSDFMSFp-uncnp2
0attend648.01648.018.2540.0130.820
1reading1568.011568.044.1690.0030.917
2attend * reading8.018.00.2250.6600.053
3Residual142.0435.5NaNNaNNaN
+
+
+
+
+
model = ols('grade ~ attend + reading + attend:reading', data=rtfm1).fit()
+sm.stats.anova_lm(model, typ=2).round(3)
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
sum_sqdfFPR(>F)
attend648.01.018.2540.013
reading1568.01.044.1690.003
attend:reading8.01.00.2250.660
Residual142.04.0NaNNaN
+
+
+

Yup. Same thing.

17.5.3. Changing the baseline category#

@@ -2528,6 +2682,10 @@

17.9. Summary[6]

There could be all sorts of reasons for doing this, I would imagine.

+

diff --git a/_sources/05.05-anova2.ipynb b/_sources/05.05-anova2.ipynb index 7c175e7b..7642eb31 100644 --- a/_sources/05.05-anova2.ipynb +++ b/_sources/05.05-anova2.ipynb @@ -2726,7 +2726,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 84, "id": "d8afc8e5-3a97-4a88-9090-75c814abd4b3", "metadata": {}, "outputs": [ @@ -2762,15 +2762,15 @@ " attend\n", " 648.0\n", " 1.0\n", - " 21.6000\n", - " 0.0056\n", + " 21.600\n", + " 0.006\n", " \n", " \n", " reading\n", " 1568.0\n", " 1.0\n", - " 52.2667\n", - " 0.0008\n", + " 52.267\n", + " 0.001\n", " \n", " \n", " Residual\n", @@ -2784,13 +2784,13 @@ "
" ], "text/plain": [ - " sum_sq df F PR(>F)\n", - "attend 648.0 1.0 21.6000 0.0056\n", - "reading 1568.0 1.0 52.2667 0.0008\n", - "Residual 150.0 5.0 NaN NaN" + " sum_sq df F PR(>F)\n", + "attend 648.0 1.0 21.600 0.006\n", + "reading 1568.0 1.0 52.267 0.001\n", + "Residual 150.0 5.0 NaN NaN" ] }, - "execution_count": 68, + "execution_count": 84, "metadata": {}, "output_type": "execute_result" } @@ -2801,8 +2801,8 @@ "\n", "# Here we define our model.\n", "\n", - "model = ols('grade ~ attend + reading', data=rtfm2).fit()\n", - "sm.stats.anova_lm(model, typ=2).round(4)" + "model = ols('grade ~ attend + reading', data=rtfm1).fit()\n", + "sm.stats.anova_lm(model, typ=2).round(3)" ] }, { @@ -2897,29 +2897,62 @@ "| | **yes** | $b_0 + b_1$\" | $b_0 + b_1 + b_2$ |" ] }, + { + "cell_type": "markdown", + "id": "104edecf-15b1-4e38-a348-660df6fb80b4", + "metadata": {}, + "source": [ + "As you can see, the intercept term $b_0$ acts like a kind of \"baseline\" grade that you would expect from those students who don't take the time to attend class or read the textbook. Similarly, $b_1$ represents the boost that you're expected to get if you come to class, and $b_2$ represents the boost that comes from reading the textbook. In fact, if this were an ANOVA you might very well want to characterise $b_1$ as the main effect of attendance, and $b_2$ as the main effect of reading! In fact, for a simple $2 \\times 2$ ANOVA that's *exactly* how it plays out. " + ] + }, + { + "cell_type": "markdown", + "id": "5fa1588c-c18e-4cbf-9213-c275a47f0ff7", + "metadata": {}, + "source": [ + "Okay, now that we're really starting to see why ANOVA and regression are basically the same thing, let's actually run our regression using a regression function to convince ourselves that this is really true. And this brings us to the first reason for using `statsmodels` for this example rather than `pingouin`. If you look back at the code we used to run our ANOVA, you will see that it was this:\n", + "\n", + "`model = ols('grade ~ attend + reading', data=rtfm2).fit()`\n", + "`sm.stats.anova_lm(model, typ=2).round(4)```\n", + "\n", + "That is to say, we already ran a regression! Our variable `model` literally is a linear regression, and all we did with `sm.stats.anova_lm` was dress up the results in an ANOVA costume[^halloween]\n", + "\n", + "Let's take a closer look at the output of that regression we did. `statsmodels` spits out a lot of information, but I just want to zoom in on the part that is relevant for us now, which can be found like this:\n", + "\n", + "[^halloween]: Wait a minute... I just got an idea for my next Halloween costume 🎃" + ] + }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 83, "id": "1cc7a2ed-ee68-40f9-b16f-b25478a50964", "metadata": { "scrolled": true }, "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ethan/opt/miniconda3/envs/pythonbook3/lib/python3.11/site-packages/scipy/stats/_stats_py.py:1736: UserWarning: kurtosistest only valid for n>=20 ... continuing anyway, n=8\n", + " warnings.warn(\"kurtosistest only valid for n>=20 ... continuing \"\n" + ] + }, { "data": { "text/html": [ "\n", "\n", - " \n", + " \n", "\n", "\n", - " \n", + " \n", "\n", "\n", - " \n", + " \n", "\n", "\n", - " \n", + " \n", "\n", "
coef std err t P>|t| [0.025 0.975] coef std err t P>|t| [0.025 0.975]
Intercept 43.5000 3.354 12.969 0.000 34.878 52.122Intercept 43.5000 3.354 12.969 0.000 34.878 52.122
attend[T.yes] 18.0000 3.873 4.648 0.006 8.044 27.956attend 18.0000 3.873 4.648 0.006 8.044 27.956
reading[T.yes] 28.0000 3.873 7.230 0.001 18.044 37.956reading 28.0000 3.873 7.230 0.001 18.044 37.956
" ], @@ -2927,11 +2960,11 @@ "\\begin{center}\n", "\\begin{tabular}{lcccccc}\n", "\\toprule\n", - " & \\textbf{coef} & \\textbf{std err} & \\textbf{t} & \\textbf{P$> |$t$|$} & \\textbf{[0.025} & \\textbf{0.975]} \\\\\n", + " & \\textbf{coef} & \\textbf{std err} & \\textbf{t} & \\textbf{P$> |$t$|$} & \\textbf{[0.025} & \\textbf{0.975]} \\\\\n", "\\midrule\n", - "\\textbf{Intercept} & 43.5000 & 3.354 & 12.969 & 0.000 & 34.878 & 52.122 \\\\\n", - "\\textbf{attend[T.yes]} & 18.0000 & 3.873 & 4.648 & 0.006 & 8.044 & 27.956 \\\\\n", - "\\textbf{reading[T.yes]} & 28.0000 & 3.873 & 7.230 & 0.001 & 18.044 & 37.956 \\\\\n", + "\\textbf{Intercept} & 43.5000 & 3.354 & 12.969 & 0.000 & 34.878 & 52.122 \\\\\n", + "\\textbf{attend} & 18.0000 & 3.873 & 4.648 & 0.006 & 8.044 & 27.956 \\\\\n", + "\\textbf{reading} & 28.0000 & 3.873 & 7.230 & 0.001 & 18.044 & 37.956 \\\\\n", "\\bottomrule\n", "\\end{tabular}\n", "\\end{center}" @@ -2940,7 +2973,7 @@ "" ] }, - "execution_count": 74, + "execution_count": 83, "metadata": {}, "output_type": "execute_result" } @@ -2949,6 +2982,216 @@ "model.summary().tables[1]" ] }, + { + "cell_type": "markdown", + "id": "998f52e6-6138-4b7a-a5d4-57410708225d", + "metadata": {}, + "source": [ + "There's a few interesting things to note here. First, notice that the intercept term is 43.5, which is close to the \"group\" mean of 42.5 observed for those two students who didn't read the text or attend class. Second, notice that we have the regression coefficient of $b_1 = 18.0$ for the attendance variable, suggesting that those students that attended class scored 18\\% higher than those who didn't. So our expectation would be that those students who turned up to class but didn't read the textbook would obtain a grade of $b_0 + b_1$, which is equal to $43.5 + 18.0 = 61.5$. Again, this is similar to the observed group mean of 62.5. You can verify for yourself that the same thing happens when we look at the students that read the textbook.\n", + "\n", + "Actually, we can push a little further in establishing the equivalence of our ANOVA and our regression. Look at the $p$-values associated with the `attend` variable and the `reading` variable in the regression output. They're identical to the ones we encountered earlier when running the ANOVA. This might seem a little surprising, since the test used when running our regression model calculates a $t$-statistic and the ANOVA calculates an $F$-statistic. However, if you can remember all the way back to the chapter on [probability](probability), I mentioned that there's a relationship between the $t$-distribution and the $F$-distribution: if you have some quantity that is distributed according to a $t$-distribution with $k$ degrees of freedom and you square it, then this new squared quantity follows an $F$-distribution whose degrees of freedom are 1 and $k$. We can check this with respect to the $t$ statistics in our regression model. For the `attend` variable we get a $t$ value of 4.648. If we square this number we end up with 21.604, which is identical to the corresponding $F$ statistic in our ANOVA. [I love it when a plan comes together.](https://www.youtube.com/watch?v=NsUFBm1uENs)\n" + ] + }, + { + "cell_type": "markdown", + "id": "76fcaa5a-c7b3-497d-9fe3-5a01701e199f", + "metadata": {}, + "source": [ + "I mentioned there was a second reason I didn't use `pingouin` for this example. This is because as far as I can tell, when performing an ANOVA `pingouin` always calculated not only the main effects, but also the interaction, thus giving slightly different results. In order to keep things simple (and maintain parity with [LSR](http://learningstatisticswithr.com/), I decided to go with `statsmodels` and not specify any interactions. Just to be sure though, let's run the ANOVA with `pingouin`, and then run the regression in `statsmodels` with a little ANOVA dressing on top, and confirm that we get the same result:" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "id": "ec480505-abcd-43fa-abdd-a5622915820a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SourceSSDFMSFp-uncnp2
0attend648.01648.018.2540.0130.820
1reading1568.011568.044.1690.0030.917
2attend * reading8.018.00.2250.6600.053
3Residual142.0435.5NaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " Source SS DF MS F p-unc np2\n", + "0 attend 648.0 1 648.0 18.254 0.013 0.820\n", + "1 reading 1568.0 1 1568.0 44.169 0.003 0.917\n", + "2 attend * reading 8.0 1 8.0 0.225 0.660 0.053\n", + "3 Residual 142.0 4 35.5 NaN NaN NaN" + ] + }, + "execution_count": 99, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pg.anova(dv='grade', between=['attend', 'reading'], data=rtfm1).round(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "id": "b8cbf2e1-be49-4206-a2ea-35dc01501053", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sum_sqdfFPR(>F)
attend648.01.018.2540.013
reading1568.01.044.1690.003
attend:reading8.01.00.2250.660
Residual142.04.0NaNNaN
\n", + "
" + ], + "text/plain": [ + " sum_sq df F PR(>F)\n", + "attend 648.0 1.0 18.254 0.013\n", + "reading 1568.0 1.0 44.169 0.003\n", + "attend:reading 8.0 1.0 0.225 0.660\n", + "Residual 142.0 4.0 NaN NaN" + ] + }, + "execution_count": 98, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "model = ols('grade ~ attend + reading + attend:reading', data=rtfm1).fit()\n", + "sm.stats.anova_lm(model, typ=2).round(3)" + ] + }, + { + "cell_type": "markdown", + "id": "d8e11264-5512-4524-9ae5-f91f6fd8497d", + "metadata": {}, + "source": [ + "Yup. Same thing." + ] + }, { "attachments": {}, "cell_type": "markdown", diff --git a/searchindex.js b/searchindex.js index 94c41c90..2e70b950 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["01.01-intro", "01.02-studydesign", "02.01-getting_started_with_python", "02.02-more_python_concepts", "03.01-descriptives", "03.02-drawing_graphs", "03.03-pragmatic_matters", "03.04-basic_programming", "04.01-intro-to-probability", "04.02-probability", "04.03-estimation", "04.04-hypothesis-testing", "05.01-chisquare", "05.02-ttest", "05.03-anova", "05.04-regression", "05.05-anova2", "06.01-bayes", "06.02-epilogue", "bibliography", "landingpage"], "filenames": ["01.01-intro.ipynb", "01.02-studydesign.ipynb", "02.01-getting_started_with_python.ipynb", "02.02-more_python_concepts.ipynb", "03.01-descriptives.ipynb", "03.02-drawing_graphs.ipynb", "03.03-pragmatic_matters.ipynb", "03.04-basic_programming.ipynb", "04.01-intro-to-probability.ipynb", "04.02-probability.ipynb", "04.03-estimation.ipynb", "04.04-hypothesis-testing.ipynb", "05.01-chisquare.ipynb", "05.02-ttest.ipynb", "05.03-anova.ipynb", "05.04-regression.ipynb", "05.05-anova2.ipynb", "06.01-bayes.ipynb", "06.02-epilogue.ipynb", "bibliography.md", "landingpage.md"], "titles": ["1. Why do we learn statistics?", "2. A brief introduction to research design", "3. Getting Started with Python", "4. More Python Concepts", "5. Descriptive statistics", "6. Drawing Graphs", "7. Data Wrangling", "8. Basic Programming", "9. Statistical theory", "10. Introduction to Probability", "11. Estimating unknown quantities from a sample", "12. Hypothesis Testing", "13. Categorical data analysis", "14. Comparing Two Means", "15. Comparing several means (one-way ANOVA)", "16. Linear regression", "17. Factorial ANOVA", "18. Bayesian Statistics", "19. Epilogue", "20. References", "Learning Statistics with Python"], "terms": {"thou": 0, "shalt": 0, "answer": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "questionnair": [0, 1, 4, 9], "Or": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "quizz": [0, 12], "upon": [0, 1, 5, 10, 11, 14, 17], "world": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "affair": [0, 1, 10], "nor": [0, 1, 9, 11, 16, 17], "complianc": 0, "take": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "ani": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "test": [0, 4, 6, 8, 9, 10, 19], "sit": [0, 1, 3, 4, 6, 7, 9, 10, 11], "With": [0, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15], "statistician": [0, 1, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "commit": [0, 14, 20], "w": [0, 3, 7, 8, 13, 14, 15, 16, 19], "h": [0, 3, 9, 12, 14, 15, 17, 19], "auden": 0, "1": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "To": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "surpris": [0, 1, 2, 3, 4, 5, 9, 11, 12, 13, 14, 15, 16, 17], "mani": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "student": [0, 1, 2, 3, 4, 10, 11, 12, 15, 16, 17, 19, 20], "fairli": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17], "signific": [0, 12, 13, 14, 16, 17, 19], "part": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "educ": [0, 1, 2, 10, 11, 15, 19], "one": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 17, 19], "veri": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "rare": [0, 1, 3, 4, 10, 11, 13, 16], "favourit": [0, 1, 13], "after": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "all": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16], "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16], "realli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "love": [0, 1, 2, 3, 4, 5, 9, 11, 15, 20], "idea": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "d": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 19], "probabl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 19, 20], "enrol": [0, 1, 9, 10], "class": [0, 1, 2, 3, 4, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17], "right": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17], "now": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "surprisingli": [0, 1, 2, 4, 10, 11, 12, 13, 14, 15, 16, 17], "pretti": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "larg": [0, 1, 4, 5, 6, 9, 11, 12, 13, 14, 15, 16, 17], "proport": [0, 1, 4, 9, 11, 12, 14, 15, 16, 17, 19], "base": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "isn": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "t": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 15, 16, 19, 20], "happi": [0, 5, 9, 11, 12, 13, 14, 17], "about": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "fact": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "ha": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "much": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 20], "In": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "view": [0, 1, 5, 6, 10, 13, 14, 15, 16, 17], "thi": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20], "i": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20], "thought": [0, 2, 3, 4, 6, 9, 10, 11, 12, 13, 16, 17], "place": [0, 1, 2, 3, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17], "start": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "might": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "some": [0, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 17, 19], "common": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 17], "question": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "peopl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 19, 20], "stat": [0, 1, 2, 4, 9, 10, 11, 13, 14, 15, 16, 17, 20], "A": [0, 2, 8, 9, 19], "big": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "issu": [0, 1, 3, 4, 5, 6, 8, 10, 12, 15, 16], "hand": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "relat": [0, 1, 2, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "what": [0, 1, 2, 5, 6, 7, 8, 10, 11, 12, 14, 15, 20], "And": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17], "ar": [0, 1, 2, 3, 5, 6, 7, 8, 11, 12, 13, 14, 15, 17, 19], "scientist": [0, 1, 3, 4, 10, 11, 12, 13, 17], "bloodi": [0, 1, 10, 13, 14, 17], "obsess": [0, 11], "These": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "good": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19], "when": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "think": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20], "let": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "last": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "As": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "group": [0, 1, 3, 4, 6, 10, 11, 12, 13, 14, 16, 17], "seem": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "bizarr": [0, 1], "fixat": 0, "run": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 17], "everyth": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17], "us": [0, 1, 5, 6, 8, 10, 11, 12, 14, 15, 16, 19, 20], "often": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sometim": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "forget": [0, 1, 2, 3, 4, 5, 6, 9, 17], "explain": [0, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "It": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "kind": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 20], "articl": [0, 1, 4, 9, 12], "faith": [0, 1, 2, 4, 12, 16, 17], "among": [0, 1, 3, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "especi": [0, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15], "social": [0, 1, 2, 6, 10], "your": [0, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17], "find": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19], "trust": [0, 1, 3, 6, 7, 9, 13, 14, 15], "until": [0, 2, 3, 5, 6, 7, 9, 10, 13, 14, 15, 17], "ve": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "done": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "undergradu": [0, 1, 9, 10, 15, 17], "forgiven": [0, 16], "re": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "complet": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 14, 15, 16, 17, 19], "mad": [0, 1, 4, 11, 15], "becaus": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "time": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "simpl": [0, 1, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 19], "don": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "just": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "sens": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "naiv": [0, 1, 17], "wai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 20], "most": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 19, 20], "lot": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "2": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 16, 17, 19], "my": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "monei": [0, 2, 10, 11, 14, 15], "best": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15], "ourselv": [0, 1, 3, 4, 5, 7, 9, 10, 11, 13, 14, 15, 16, 17], "enough": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "worri": [0, 1, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "human": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 19], "suscept": 0, "bias": [0, 8, 10, 11, 13], "temptat": [0, 11, 17], "frailti": [0, 17], "suffer": [0, 11, 14], "from": [0, 1, 2, 4, 5, 7, 8, 9, 11, 12, 15, 16, 17, 19, 20], "basic": [0, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16, 17], "safeguard": 0, "evalu": [0, 2, 4, 15], "evid": [0, 1, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19], "mean": [0, 2, 3, 5, 7, 8, 11, 12, 15, 16, 19], "gut": [0, 5, 11], "instinct": [0, 10, 15], "reli": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "verbal": [0, 1], "argument": [0, 1, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16], "raw": [0, 1, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17], "power": [0, 1, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 19], "reason": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 19], "come": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "up": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16], "approach": [0, 1, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20], "like": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "work": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 15, 16, 17, 20], "sound": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 14, 15, 17], "me": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sinc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "depart": [0, 13], "dig": [0, 1, 3, 5, 9, 13, 15, 16], "littl": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "deeper": [0, 1, 3, 11, 14], "here": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "Is": [0, 1, 3, 4, 5, 6, 8, 13, 16], "plausibl": [0, 8, 9, 10, 13, 17], "trustworthi": [0, 1, 4, 12, 13, 15], "construct": [0, 4, 6, 9, 10, 11, 14, 15, 16], "languag": [0, 2, 3, 4, 5, 7, 9, 11, 12, 13, 14, 17], "thing": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "harder": [0, 1, 2, 13, 14, 15], "sai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "other": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16], "necessarili": [0, 1, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16], "thei": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20], "fals": [0, 1, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "e": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "g": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 19], "quantum": 0, "electrodynam": 0, "theori": [0, 4, 6, 10, 11, 12, 13, 14, 15, 16, 19], "hard": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "word": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "our": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17], "aren": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "design": [0, 3, 5, 9, 10, 11, 12, 13, 14, 15, 17, 19], "solv": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 15, 17], "scientif": [0, 1, 4, 5, 9, 10, 11, 12, 13, 14, 15, 17], "problem": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 19, 20], "handl": [0, 1, 2, 5, 6, 7, 10, 12, 13, 14, 15, 16, 17], "dai": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "infer": [0, 4, 8, 9, 10, 14, 15, 16, 17], "given": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "biolog": [0, 10, 19], "evolut": 0, "slower": [0, 20], "cultur": 0, "chang": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "should": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "differ": [0, 1, 2, 3, 5, 6, 8, 10, 14, 15, 17, 19], "live": [0, 1, 2, 4, 10, 11, 12, 13, 17], "fundament": [0, 1, 4, 9, 11, 13, 14, 15, 16, 17], "sensibl": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "requir": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "engag": [0, 1, 7], "induct": [0, 8, 10, 11], "make": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "wise": [0, 12, 14, 15, 17], "guess": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "go": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "beyond": [0, 1, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17], "immedi": [0, 3, 4, 7, 10, 14, 16], "generalis": [0, 1, 4, 10, 15, 16], "If": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "without": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17], "being": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "influenc": [0, 1, 2, 4, 6, 11, 14, 15, 16], "variou": [0, 2, 3, 7, 11, 15, 16, 17], "distractor": 0, "well": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "bridg": 0, "brooklyn": 0, "sell": [0, 2], "heck": [0, 4, 13], "next": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "section": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "show": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "even": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "deduct": [0, 8], "ones": [0, 1, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "where": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "pre": [0, 1, 17], "exist": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17], "mostli": [0, 1, 3, 4, 5, 7, 9, 13, 14], "smart": [0, 1, 2, 7, 13], "certainli": [0, 1, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16], "smarter": [0, 1], "speci": [0, 3, 12, 17], "share": [0, 1, 5, 6, 7, 9, 10], "planet": [0, 12], "though": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "disagre": [0, 1, 6, 11, 19], "mind": [0, 1, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17], "quit": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "amaz": [0, 8, 9, 12], "capabl": 0, "incred": [0, 1, 5, 13, 15, 17], "feat": [0, 1], "That": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "doesn": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "perfect": [0, 1, 4, 5, 10, 11, 12, 13, 14, 15], "psychologist": [0, 1, 8, 9, 10, 11, 13, 14, 17], "shown": [0, 1, 2, 4, 7, 9, 10, 11, 13, 14, 15, 16, 17], "over": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "year": [0, 1, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 17], "neutral": [0, 11], "imparti": [0, 1], "swai": 0, "exampl": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17], "effect": [0, 2, 3, 4, 5, 6, 7, 9, 10, 15, 17, 19], "logic": [0, 1, 4, 6, 7, 11, 15, 16, 17, 19], "ask": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "decid": [0, 2, 3, 5, 9, 10, 11, 13, 14, 15, 17], "whether": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "particular": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "valid": [0, 14, 15, 16, 17], "conclus": [0, 1, 8, 10, 13, 14, 16, 17], "would": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "true": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "premis": 0, "were": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "tend": [0, 1, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 17], "believ": [0, 1, 4, 8, 9, 10, 11, 12, 13, 14, 15], "shouldn": [0, 1, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16], "For": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "instanc": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "No": [0, 1, 4, 8, 9, 10, 11, 12, 13, 14, 15, 17], "cigarett": [0, 1], "inexpens": 0, "addict": 0, "therefor": [0, 1, 2, 3, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17], "structur": [0, 1, 3, 5, 6, 7, 11, 12, 13, 14, 16], "ident": [0, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "both": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "howev": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "second": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "incorrect": [0, 4, 9, 10, 17], "result": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 13, 14, 15, 19], "case": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19], "also": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "But": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "entir": [0, 1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "irrelev": [0, 5, 9, 14, 15, 16], "topic": [0, 1, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16], "an": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 17, 19, 20], "consequ": [0, 1, 2, 4, 5, 8, 10, 11, 12, 13, 14, 16, 17], "involv": [0, 1, 2, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 19], "statement": [0, 1, 2, 3, 4, 9, 10, 11, 14, 16, 17], "invalid": [0, 1, 6], "final": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "unbeliev": 0, "suppos": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "perfectli": [0, 1, 3, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "abl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17], "set": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17], "asid": [0, 1, 2, 3, 10, 11, 12], "pure": [0, 1, 4, 7, 9, 10, 11, 12, 13, 14], "its": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "merit": [0, 1, 13], "expect": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "100": [0, 1, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16], "0": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "ran": [0, 10, 11, 12, 13, 14, 15, 16, 17], "experi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17], "look": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "see": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "data": [0, 1, 2, 7, 8, 9, 10, 19], "feel": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "approxim": [0, 1, 2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15], "safe": [0, 1, 2, 3, 5, 11, 13, 14, 16], "okai": [0, 1, 2, 3, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "bother": [0, 4, 7, 11, 12, 13, 14, 15, 17], "murki": 0, "stuff": [0, 1, 2, 3, 4, 7, 10, 11, 12, 14], "gui": [0, 13], "taken": [0, 2, 3, 4, 6, 7, 9, 11, 12, 14, 15, 16, 17], "psych": [0, 1, 13], "know": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "classic": [0, 1, 4, 5, 16, 17, 19], "studi": [0, 2, 4, 5, 6, 10, 12, 13, 14, 15, 16, 17, 19], "evan": [0, 9, 19], "et": [0, 1, 6, 9, 19], "al": [0, 1, 9, 19], "1983": [0, 19], "exactli": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17], "found": [0, 1, 3, 9, 10, 11, 12, 14, 15, 16, 17], "agreement": [0, 6, 15], "went": [0, 1, 4, 5, 7, 14, 15], "hope": [0, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "92": [0, 4, 5, 10, 12, 15, 16], "8": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "Not": [0, 1, 2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "happen": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "intuit": [0, 1, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17], "truth": [0, 1, 2, 4, 8, 9, 10, 14, 15, 17], "against": [0, 4, 5, 6, 8, 12, 13, 14, 15, 16, 17], "46": [0, 4, 19], "oh": [0, 7, 8, 9, 12, 13, 14, 15], "dear": [0, 14], "appar": [0, 1, 5, 12, 13, 16], "present": [0, 1, 2, 4, 5, 10, 15, 16, 17], "strong": [0, 1, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17], "contradict": 0, "perceiv": [0, 7], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "did": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "wors": [0, 1, 3, 4, 11, 13, 15, 16, 17], "weak": [0, 2, 4, 5, 11, 12, 13, 15, 17], "agre": [0, 1, 4, 6, 8, 9, 11, 12, 17], "almost": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 17], "got": [0, 1, 2, 3, 4, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17], "wrong": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "3": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "horribl": [0, 1, 5, 17], "damn": [0, 15], "overal": [0, 5, 10, 11, 13, 14, 15, 16], "better": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20], "chanc": [0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "compens": 0, "prior": 0, "60": [0, 4, 5, 6, 9, 11, 12, 13, 14, 15, 16, 19], "judgement": 0, "correct": [0, 1, 2, 4, 7, 8, 9, 10, 11, 13, 15, 16, 17], "50": [0, 1, 4, 5, 6, 9, 10, 11, 12, 13, 16, 17, 19], "profession": [0, 1], "someon": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16], "came": [0, 4, 5, 6, 8, 9, 10, 11, 12, 14], "along": [0, 2, 4, 5, 7, 11, 13, 14, 15, 16, 20], "offer": [0, 2, 4, 9, 10, 11, 12, 16], "magic": [0, 1, 3, 4, 7, 10, 11, 12, 13, 14, 15, 17], "tool": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "improv": [0, 1, 4, 13, 14, 15, 16], "decis": [0, 5, 6, 9, 12, 17], "95": [0, 4, 9, 10, 12, 13, 14, 15, 17], "jump": [0, 3, 4, 6, 12, 13, 17], "Of": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "cours": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "thankfulli": 0, "actual": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "too": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "easi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17], "want": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "instead": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "need": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "bit": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "help": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "keep": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "person": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "under": [0, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "control": [0, 1, 5, 6, 11, 13, 14, 15, 16, 17, 19], "doe": [0, 1, 2, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 17], "honest": [0, 1, 3, 4, 5, 9, 11, 12, 13, 17], "follow": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "stori": [0, 1, 2, 4, 6, 9, 10, 11, 12, 13, 14, 16, 17], "1973": [0, 1, 4, 12, 19], "univers": [0, 1, 9, 10, 12, 13, 14, 19], "california": [0, 17], "berkelei": 0, "had": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "admiss": [0, 19], "postgradu": [0, 13], "specif": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "caus": [0, 1, 4, 5, 7, 10, 11, 12, 13, 14, 15, 17], "wa": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "gender": [0, 1, 6, 16], "breakdown": [0, 9, 10], "which": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "number": [0, 1, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 19], "applic": [0, 2, 5, 9, 10, 11], "percent": [0, 12, 17], "admit": [0, 7, 8, 11, 13, 14], "male": [0, 1, 6, 10, 11], "8442": 0, "44": [0, 12, 13, 17], "femal": [0, 1, 6, 10, 11], "4321": 0, "35": [0, 1, 4, 5, 12, 13, 14, 15, 16, 19], "su": 0, "4": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "nearli": [0, 6, 7, 10, 14, 16], "13": [0, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17], "000": [0, 4, 10, 11, 13, 15, 16], "9": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "rate": [0, 1, 4, 11, 12, 13, 14, 15, 16, 17], "between": [0, 1, 4, 5, 6, 7, 8, 9, 10, 12, 13, 17, 19], "coincid": [0, 4, 11], "compel": [0, 15, 17], "reflect": [0, 1, 4, 6, 9, 10, 11, 13, 14, 16, 17], "favour": [0, 2, 4, 8, 11, 12, 17], "women": 0, "sort": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "either": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "crazi": [0, 9], "sexist": 0, "oddli": [0, 3, 12], "carefulli": [0, 1, 4, 12, 13, 14, 15, 16], "told": [0, 3, 4, 5, 7, 8, 9, 11, 12, 14, 16, 17], "rather": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "bickel": [0, 19], "1975": [0, 6, 19], "basi": [0, 1, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "turn": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "out": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "slightli": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "higher": [0, 1, 4, 11, 13, 16], "success": [0, 4, 9, 11], "fig": [0, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17], "figur": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 20], "six": [0, 4, 7, 8, 9, 14], "largest": [0, 1, 4, 5, 10, 14, 15], "name": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "remov": [0, 4, 5, 6, 9, 10, 11, 13, 15, 16], "privaci": 0, "myst_nb": [0, 11, 12, 13, 14, 15, 16], "import": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "glue": [0, 2, 4, 9, 11, 12, 13, 14, 15, 16], "panda": [0, 2, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 17], "pd": [0, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 17], "b": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "c": [0, 3, 4, 5, 7, 8, 9, 10, 12, 13, 15, 16, 19], "f": [0, 3, 9, 10, 12, 13, 19, 20], "825": [0, 15], "560": [0, 15], "325": 0, "417": [0, 16], "191": 0, "272": 0, "62": [0, 4, 11, 13, 16], "63": [0, 4, 9, 13, 15], "37": [0, 4, 6, 9, 16], "33": [0, 1, 4, 5, 6, 11, 13], "28": [0, 4, 5, 12, 15, 16, 19], "6": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "108": [0, 5, 10], "25": [0, 2, 4, 5, 6, 10, 11, 12, 13, 14, 15, 17], "593": [0, 6, 15], "375": 0, "393": 0, "341": 0, "82": [0, 3, 4, 5, 10, 15], "68": [0, 4, 5, 9, 10, 13, 15], "34": [0, 3, 6, 7, 9, 10, 15, 16, 19], "24": [0, 1, 3, 4, 5, 6, 9, 10, 13, 14, 15], "7": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "df": [0, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 17], "datafram": [0, 4, 5, 9, 10, 12, 13, 14, 15, 16], "berklei": 0, "tabl": [0, 1, 2, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 19], "displai": [0, 1, 4, 5, 9, 10, 13, 14, 15, 16], "5": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "remark": [0, 3, 8, 9, 10, 12, 17], "yet": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "across": [0, 1, 2, 4, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17], "lower": [0, 3, 4, 7, 10, 11, 13, 14, 15, 16, 17], "how": [0, 1, 2, 4, 5, 6, 7, 8, 11, 13, 15, 16, 17, 20], "same": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17], "firstli": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16], "notic": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "equal": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "anoth": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "term": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "percentag": [0, 4, 9, 19], "engin": [0, 1, 4], "chemistri": 0, "high": [0, 1, 2, 4, 5, 9, 10, 11, 13, 15], "qualifi": [0, 5], "wherea": [0, 1, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16], "english": [0, 7, 9, 11, 12, 14, 16], "reject": [0, 4, 8, 11, 12, 13, 14, 15, 17, 19], "candid": [0, 5, 17], "qualiti": [0, 5, 12, 15], "abov": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "gener": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 16, 17, 19], "order": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "appli": [0, 1, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 19], "rank": [0, 4, 14, 19], "total": [0, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "get": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 20], "bold": [0, 1, 4, 10, 17], "whole": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17], "compar": [0, 4, 7, 9, 10, 11, 12, 17], "distribut": [0, 2, 4, 5, 6, 13, 14, 15, 16, 17, 19, 20], "themselv": [0, 1, 4, 5, 6, 7, 9, 10, 12, 13, 15, 17], "produc": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "suggest": [0, 1, 2, 3, 4, 5, 7, 9, 11, 12, 13, 14, 15, 16, 17], "below": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "trend": [0, 16], "systemat": [0, 1, 4, 10, 12, 13, 16], "strike": 0, "known": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "real": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "first": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "encount": [0, 1, 3, 4, 8, 9, 10, 11, 12, 13, 14, 15], "refus": [0, 9, 17], "while": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17], "subtl": [0, 1, 2, 3, 4, 5, 9, 15], "lesson": [0, 4, 17], "buri": [0, 4, 14], "point": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "counterintuit": [0, 9, 11, 12, 14], "trap": [0, 1, 2], "ly": [0, 4, 12, 14, 17], "wait": [0, 4, 5, 12, 14, 15, 16, 17], "unwari": [0, 11], "teach": [0, 1, 3, 7, 13, 15, 17, 20], "scienc": [0, 1, 2, 10, 11, 17, 19], "cunningli": 0, "hidden": [0, 1, 10, 11, 12, 15, 16], "nook": 0, "cranni": 0, "complic": [0, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16], "os": [0, 3], "pathlib": 0, "path": [0, 9], "cwd": 0, "getcwd": 0, "chdir": 0, "str": [0, 3, 4, 7, 10], "parent": [0, 1, 4, 13], "df_berk": 0, "read_csv": [0, 3, 4, 5, 6, 12, 13, 14, 15, 16, 17], "berkeley2": 0, "csv": [0, 4, 5, 6, 7, 12, 13, 14, 15, 16, 17], "seaborn": [0, 2, 3, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16], "sn": [0, 3, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16], "plot": [0, 4, 6, 7, 9, 11, 14, 15, 16], "berk": 0, "berkelyplot": 0, "lmplot": 0, "x": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16], "y": [0, 1, 3, 4, 5, 7, 9, 10, 11, 12, 13, 15, 16], "hue": [0, 9, 10, 16], "size": [0, 1, 3, 6, 9, 10, 15, 17, 19], "xlabel": [0, 4, 5, 9, 10, 11, 12, 13, 15], "pecentag": 0, "ylabel": [0, 4, 5, 9, 10, 11, 12, 13, 15], "befor": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "leav": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16], "someth": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "els": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "critic": [0, 1, 3, 6, 8, 9, 10, 12, 13, 15], "overlook": [0, 14], "rememb": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "concern": [0, 1, 2, 3, 4, 6, 10, 11, 12, 14, 15, 16, 17], "process": [0, 1, 2, 3, 4, 5, 7, 10, 11, 12, 13, 14, 15, 17], "unfairli": 0, "aggreg": [0, 1, 14], "discrimin": [0, 8, 11, 13], "disaggreg": [0, 1], "individu": [0, 1, 2, 4, 7, 9, 13, 14, 16], "behaviour": [0, 1, 2, 4, 5, 10, 12, 13, 14, 17], "anyth": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "self": [0, 2, 6, 10], "select": [0, 4, 5, 6, 10, 12, 14], "legal": [0, 11], "perspect": [0, 1, 2, 3, 4, 7, 9, 10, 11, 14, 15, 16, 17], "put": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 20], "clear": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "determin": [0, 1, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16, 17], "level": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "less": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "unbias": [0, 4, 10], "small": [0, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "consist": [0, 1, 3, 4, 5, 6, 8, 10, 11, 13, 14, 17, 19], "dictat": 0, "choos": [0, 1, 2, 3, 4, 5, 6, 11, 12, 13, 14, 15, 17], "hardli": [0, 11, 15, 17], "held": 0, "account": [0, 1, 10, 11, 12, 13, 14, 15, 16, 17], "those": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "choic": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 17], "somewhat": [0, 1, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "glib": [0, 12], "earlier": [0, 1, 2, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "interest": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sociolog": 0, "revers": [0, 1, 3, 11, 13, 15], "still": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "everi": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "singl": [0, 2, 5, 6, 7, 9, 10, 11, 13, 14, 16, 17], "itself": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "hypothet": [0, 4, 9, 16], "prefer": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17], "further": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 15, 16, 17], "low": [0, 1, 4, 5, 10, 11, 12, 13, 15], "govern": [0, 1, 9, 16], "fund": 0, "ph": [0, 1], "ti": [0, 2, 3, 13, 14, 15], "project": [0, 1, 6, 10, 12, 15, 17], "constitut": [0, 5, 16], "unenlighten": 0, "valu": [0, 1, 2, 5, 6, 7, 9, 10, 12, 14, 16, 19], "cut": [0, 4, 5, 9, 12, 14, 15, 17], "felt": [0, 3, 13], "useless": [0, 4, 5, 10, 13, 15], "chick": 0, "blatantli": 0, "none": [0, 1, 4, 5, 7, 8, 10, 12, 13, 14, 17], "fall": [0, 1, 4, 5, 9, 10, 11, 12, 13, 15, 16, 17], "within": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "purview": 0, "matter": [0, 1, 2, 3, 4, 6, 7, 9, 11, 12, 13, 15, 16, 17], "short": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16], "huge": [0, 4, 5, 10, 13, 14, 15, 20], "impact": [0, 7, 9], "analys": [0, 1, 2, 4, 5, 6, 7, 9, 11, 12, 14, 15, 16, 17], "interpret": [0, 1, 2, 5, 6, 7, 9, 11, 12, 13, 14, 19], "alwai": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "end": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "substitut": [0, 13, 16, 17], "care": [0, 1, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "discuss": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "focus": [0, 1, 2, 4, 8, 9, 10, 12, 13, 17], "m": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20], "role": [0, 2, 3, 10, 17], "plai": [0, 1, 3, 4, 5, 8, 9, 10, 14], "devot": [0, 3, 6, 9], "lectur": [0, 1, 2, 4, 10, 13, 16], "attempt": [0, 1, 2, 4, 5, 7, 9, 10, 11, 13, 14, 15, 17], "few": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "them": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "glorious": 0, "messi": [0, 2, 4, 6, 11, 12], "infuriatingli": 0, "pervers": 0, "physic": [0, 1, 3, 9, 19], "includ": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16], "object": [0, 4, 6, 9, 10, 11, 15, 17], "electron": 0, "complex": [0, 3, 4, 6, 7, 10, 15, 17], "aris": [0, 1, 4, 6, 9, 10, 13, 14, 16], "own": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17], "opinion": [0, 1, 3, 5, 6, 9, 10, 11, 12, 14, 17], "each": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "weird": [0, 1, 4, 5, 8, 9, 11, 12, 15], "arbitrari": [0, 1, 4, 9, 13], "bore": [0, 1, 4, 5, 6, 11, 14, 15, 16], "middl": [0, 1, 3, 4, 5, 6, 9, 13, 15, 16, 17], "angri": 0, "experiment": [0, 9, 10, 11, 12, 13, 14, 16, 17, 19], "deliber": [0, 1, 10, 11, 12, 16], "try": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sabotag": 0, "ever": [0, 1, 2, 3, 7, 8, 9, 11, 14, 15, 16, 17], "At": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "physicist": [0, 1], "luxuri": 0, "pathet": 0, "comparison": [0, 4, 7, 12, 13, 15, 17, 19], "vast": [0, 1, 4, 5, 9, 11, 12, 13], "mess": [0, 2, 3, 5, 11], "confront": [0, 1], "desper": [0, 11, 15, 17], "reliant": [0, 6], "bad": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15], "pick": [0, 1, 4, 5, 6, 9, 10, 11, 12, 13, 15, 17], "extent": [0, 1, 2, 4, 5, 6, 13, 14, 15, 16], "becom": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "fulli": [0, 16], "train": [0, 1, 9, 12, 17], "reach": [0, 10, 17], "certain": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16], "compet": 0, "three": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17], "ought": [0, 1, 2, 3, 5, 7, 10, 12, 14, 15], "deepli": [0, 1, 4, 5, 9], "intertwin": [0, 1], "least": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "understand": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "secondli": [0, 1, 5, 6, 8, 9, 10, 13, 14, 15, 16], "side": [0, 4, 5, 7, 8, 9, 10, 12, 14, 15, 16, 17], "literatur": [0, 4, 8, 9, 11, 12, 14, 17], "paper": [0, 1, 2, 5, 7, 9, 10, 11, 12, 14, 15, 17], "report": [0, 1, 4, 5, 9, 10, 13, 14, 15, 16, 17], "amount": [0, 1, 3, 4, 5, 10, 11, 12, 13, 15, 17], "thirdli": [0, 5, 15], "practic": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 19], "depend": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "analysi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19], "expens": [0, 2, 4, 10, 13, 17], "australian": [0, 1, 4, 5, 9, 10, 12, 13], "charg": 0, "fee": [0, 2], "ll": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "nation": [0, 4, 10, 19], "prioriti": [0, 2], "categori": [0, 1, 4, 9, 10, 11, 12, 17], "area": [0, 1, 5, 9, 11, 13], "massiv": [0, 2, 4, 5, 12, 13], "shortag": 0, "law": [0, 1, 9, 11, 17], "suppli": [0, 5, 10, 12], "demand": [0, 10, 15], "situat": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "cruel": 0, "afford": [0, 4, 9], "econom": [0, 10], "suffici": [0, 1, 2, 4, 10, 11, 12, 13, 14, 15, 16], "note": [0, 1, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 19], "stai": [0, 5, 6, 7, 9], "top": [0, 1, 3, 4, 5, 6, 9, 10, 12, 13, 15, 16, 20], "field": [0, 1, 2, 4, 8, 9, 11, 12, 15, 17], "read": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "heavili": [0, 1, 5, 10, 13, 14, 15, 16], "job": [0, 4, 5, 6, 9, 11, 12, 15, 17, 20], "clinic": [0, 1, 4, 10, 14, 16, 17], "everyon": [0, 1, 2, 4, 9, 10, 11, 12, 13, 15, 16, 17], "21st": 0, "centuri": [0, 9, 11, 12, 14, 17], "everywher": [0, 7, 9, 12, 13], "frankli": [0, 4, 5], "knowledg": [0, 1, 4, 5, 9, 10, 12, 13, 15, 17], "close": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "surviv": 0, "drown": 0, "inform": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "starv": 0, "author": [0, 1, 3, 5, 6, 12, 13, 14, 15, 16, 17], "origin": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "john": [0, 5, 9, 10, 19], "naisbitt": 0, "write": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16], "took": [0, 1, 4, 6, 7, 13, 15, 17], "20": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "recent": [0, 3, 4, 5, 7, 8, 9], "new": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "post": [0, 1, 15], "abc": [0, 4, 17], "websit": [0, 4, 10], "call": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "made": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "mistak": [0, 1, 4, 5, 7, 9, 12, 14, 17], "error": [0, 1, 2, 3, 4, 5, 10, 12, 13, 14, 15, 16, 17, 19], "curiou": [0, 1, 4, 6, 13, 16], "fail": [0, 1, 11, 13, 15, 16, 17], "baselin": 0, "mention": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15], "characterist": [0, 1, 4, 6, 9, 10, 11], "journalist": [0, 4], "biggest": [0, 1, 4, 11, 13, 14, 15, 17], "newspap": [0, 1, 9], "internet": [0, 1, 3, 5, 11, 15], "far": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "frequent": [0, 4, 12], "hous": [0, 3, 4, 7, 10, 13, 15], "price": [0, 2, 4], "australia": [0, 4, 10, 11, 17], "later": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20], "version": [0, 1, 2, 4, 5, 6, 7, 11, 12, 13, 14, 15, 20], "book": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "anecdot": 0, "line": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17, 20], "talk": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "fair": [0, 3, 4, 5, 8, 9, 11, 12, 13, 14, 15, 17], "wouldn": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "methodolog": [0, 1, 10, 11, 12, 19], "broader": [0, 1, 5, 10, 13, 15, 16], "concept": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16], "cover": [0, 1, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "pragmat": [0, 1, 6, 9, 17], "99": [0, 4, 9, 10, 11, 13, 15], "fear": [0, 7, 12, 15], "hopefulli": [0, 3, 4, 7, 12, 14, 16], "convinc": [0, 1, 9, 10, 11, 12, 15, 16], "importantli": [0, 9, 10, 11, 15], "said": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "typic": [0, 1, 3, 4, 9, 10, 12, 13, 14, 15, 16], "introductori": [0, 3, 9, 10, 11, 12, 13, 15, 17], "heavi": [0, 13, 15], "usual": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "evil": [0, 1], "contrari": [0, 8, 17], "focu": [0, 1, 3, 4, 5, 7, 9, 11, 12, 13, 14, 15, 16], "yourself": [0, 1, 2, 3, 4, 5, 6, 7, 9, 12, 13, 14, 15, 16, 17], "assign": [0, 1, 2, 3, 4, 6, 7, 9, 11, 12, 13, 14, 17], "greater": [0, 1, 11, 13, 14, 15, 16, 17], "ground": [0, 1, 3, 4, 5, 9, 11, 14], "collect": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 14, 15, 17], "allow": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "urgent": 0, "stress": [0, 4, 5, 10, 17], "spend": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 17], "provid": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "core": [0, 2, 3, 4, 6, 14], "type": [0, 1, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15], "principl": [0, 1, 3, 11, 12, 13, 14, 15, 16, 19], "idiosyncrat": [0, 1], "detail": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17], "quot": [0, 4, 5, 6, 7, 8, 10, 11, 12, 17], "1946": [0, 1, 12, 19], "poem": 0, "lyre": 0, "reactionari": 0, "tract": [0, 19], "deliv": 0, "commenc": 0, "address": [0, 1, 3, 4, 10, 11, 12, 14], "harvard": [0, 19], "histori": [0, 4, 7, 9, 11, 13, 17, 19], "http": [0, 1, 3, 4, 5, 6, 8, 10, 12, 13, 14, 15, 16, 17], "harvardmagazin": 0, "com": [0, 3, 4, 5, 6, 8, 12, 13, 14, 15, 16, 17], "2007": 0, "11": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "poet": 0, "warn": [0, 1, 3, 12, 13, 14, 16, 17], "html": [0, 8, 10], "cynic": [0, 16], "moment": [0, 1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "alon": [0, 13, 17], "incorrectli": [0, 11, 12, 14, 15], "nice": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "commentari": [0, 9], "www": [0, 4, 8, 10, 17], "refsmmat": 0, "2016": 0, "05": [0, 4, 11, 12, 13, 14, 15, 17], "08": [0, 4, 14, 15, 16, 17], "thank": [0, 7, 9, 15, 20], "wilfri": 0, "van": 0, "hirtum": 0, "teensi": 0, "advanc": [0, 1, 2, 7, 9, 11, 13], "consult": [1, 3, 11], "finish": [1, 3, 4, 5, 7, 10, 11, 12, 14, 17], "mere": [1, 4, 8, 10, 14], "him": [1, 8, 14], "conduct": [1, 9, 10, 11, 12, 13, 14], "mortem": 1, "examin": [1, 4, 12, 15, 16], "he": [1, 2, 3, 4, 8, 10, 11, 12, 13, 17], "perhap": [1, 3, 4, 5, 6, 9, 10, 11, 13, 14, 15, 16, 17], "di": 1, "sir": [1, 9, 11, 12, 13, 14, 17], "ronald": [1, 9, 11, 12, 13, 14, 17], "fisher": [1, 4, 9, 13, 14, 17, 19], "chapter": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "we": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "check": [1, 4, 6, 7, 8, 9, 11, 12, 17], "won": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 20], "give": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "more": [1, 2, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "than": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "overview": [1, 13, 17], "special": [1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17], "two": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 17, 20], "s": [1, 2, 3, 5, 6, 7, 8, 10, 11, 15, 16, 17, 19, 20], "statist": [1, 2, 3, 5, 6, 7, 13, 15, 16, 19], "nevertheless": [1, 4, 5, 9, 10, 11, 12, 13, 15, 17], "tradit": [1, 4, 13, 14, 15], "textbook": [1, 2, 4, 9, 11, 12, 14, 16, 17], "campbel": [1, 19], "stanlei": [1, 19], "1963": [1, 19], "steven": [1, 19], "precis": [1, 2, 3, 4, 9, 10, 11, 13, 14, 15, 16, 17], "citat": 1, "do": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17, 20], "down": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "label": [1, 2, 4, 6, 9, 10, 12, 14, 15, 16, 17], "descript": [1, 2, 5, 9, 10, 11, 12, 13, 14, 17], "count": [1, 2, 3, 4, 5, 7, 10, 11, 12, 13, 14, 15, 17], "ag": [1, 6, 7, 10], "anchovi": 1, "chromosom": 1, "identifi": [1, 2, 7, 11, 12, 13, 15], "list": [1, 2, 4, 5, 9, 10, 11, 12, 13, 14, 15, 17], "italicis": 1, "expand": [1, 4, 5, 11, 13, 14, 15, 17], "possibl": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "could": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "arisen": [1, 19], "been": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "etc": [1, 3, 4, 6, 10, 12, 14, 15, 16], "upper": [1, 3, 4, 7, 10, 11, 13, 15, 16, 19], "bound": [1, 10, 15], "fuzzi": 1, "150": [1, 4, 12, 16, 17], "long": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15], "xy": [1, 3, 4, 11, 12, 14], "xx": 1, "klinfelt": 1, "syndrom": 1, "xxy": 1, "similar": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "imagin": [1, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "mai": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "neither": [1, 4, 11, 14, 15, 16], "explicitli": [1, 4, 10, 11, 12, 14, 15, 16, 17], "myself": [1, 2, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 17], "transgend": [1, 10], "obviou": [1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "tricki": [1, 4, 6, 9, 11, 12], "assum": [1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "development": 1, "crude": [1, 10, 17], "month": [1, 3, 7, 14], "child": [1, 4, 6], "written": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "newborn": 1, "birth": 1, "mayb": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16], "hour": [1, 4, 5, 7, 15, 16], "specifi": [1, 4, 5, 6, 9, 10, 11, 13, 15], "realis": [1, 2, 5, 7, 8, 11, 12, 13, 14], "implicitli": [1, 14], "length": [1, 4, 6, 7, 10, 14, 15], "babi": [1, 4, 12, 15], "ey": [1, 3, 5, 6, 10], "movement": 1, "kid": [1, 4, 15, 17], "young": [1, 6, 17], "meaning": [1, 4, 5, 6, 9, 11, 13, 14, 16, 17], "alic": 1, "born": [1, 10, 12], "week": [1, 3, 4, 5, 7], "prematur": 1, "bianca": 1, "late": [1, 7], "ye": [1, 3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "convent": [1, 3, 4, 5, 6, 10, 11, 12, 17], "refer": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "everydai": [1, 4, 7, 8, 9, 10, 11, 14], "life": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "oper": [1, 2, 3, 4, 7, 10, 16], "independ": [1, 9, 10, 11, 14, 15, 16], "entiti": [1, 9, 10, 15], "biologi": 1, "beings": [1, 9, 10, 17], "organ": [1, 3, 5, 10], "grow": [1, 9, 10], "deal": [1, 2, 3, 4, 5, 10, 12, 13, 14, 15, 17], "adult": [1, 6], "move": [1, 3, 4, 6, 9, 11, 13, 14, 15], "method": [1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "old": [1, 2, 3, 4, 6, 7, 9, 10, 11, 14, 15, 16], "fast": [1, 3, 12, 15, 17], "cheap": 1, "lie": [1, 3, 4, 5, 7, 9, 10, 13, 15], "around": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sure": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "obstetrician": 1, "offici": [1, 17], "record": [1, 4, 6, 7, 8, 10, 12, 13, 16, 17], "certif": 1, "consum": 1, "annoi": [1, 2, 4, 5, 6, 7, 11, 13, 14, 16, 17], "dead": [1, 10], "previou": [1, 2, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "vagu": [1, 10, 11, 12, 17], "sever": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 19], "Being": [1, 12], "context": [1, 2, 3, 4, 5, 6, 11, 12, 13, 14, 15, 16, 17], "Will": 1, "phrase": [1, 4, 7, 10, 11, 12, 13, 15], "numer": [1, 3, 4, 10, 13, 16], "option": [1, 3, 5, 6, 7, 10, 12, 13, 15, 17], "open": [1, 2, 3, 10, 12, 14, 15, 20], "busi": [1, 2, 3, 4, 5, 12, 15, 17], "formal": [1, 11, 13, 15, 16], "commun": [1, 4, 12, 17], "who": [1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17], "establish": [1, 11, 12], "through": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20], "aspect": [1, 4, 13], "terminolog": [1, 2, 9, 10, 11, 12, 14, 15, 16, 17], "introduc": [1, 2, 3, 4, 5, 6, 10, 11, 12, 14, 15, 16, 17], "four": [1, 2, 4, 6, 7, 9, 10, 11, 12, 15, 16, 17], "theoret": [1, 8, 10, 11, 12, 13, 14, 15, 19], "directli": [1, 2, 4, 5, 6, 7, 11, 12, 14, 16], "observ": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "survei": [1, 2, 4, 9, 10, 12, 17], "brain": [1, 11, 14], "scan": [1, 15], "connect": [1, 3, 9, 14], "deriv": [1, 4, 9, 12, 14, 15], "blur": 1, "distinct": [1, 3, 4, 5, 9, 10, 11, 12, 13, 14, 15, 17], "indic": [1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16, 17], "qualit": [1, 4, 9, 11, 13, 14, 15, 16], "distinguish": [1, 4, 6, 10, 14, 16], "categor": [1, 6, 9, 13, 17, 19], "relationship": [1, 5, 6, 9, 10, 11, 12, 13, 16, 17], "bigger": [1, 4, 7, 9, 10, 11, 12, 13, 14, 15, 17], "absolut": [1, 2, 3, 6, 11, 13, 14, 15, 17], "averag": [1, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "colour": [1, 10, 11, 16], "blue": [1, 3, 5, 9, 10, 12, 13, 15], "green": [1, 3], "brown": [1, 14, 19], "similarli": [1, 4, 9, 11, 12, 13, 14, 15, 16, 17], "closer": [1, 2, 4, 10, 11, 13, 14, 15], "commut": 1, "One": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 19], "transport": 1, "bu": [1, 9], "car": 1, "bicycl": 1, "todai": [1, 7, 9, 11, 15, 17], "12": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "30": [1, 2, 4, 5, 6, 9, 11, 12, 13, 15, 16, 17], "48": [1, 13, 14, 15, 16, 17, 19], "10": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "obvious": [1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "silli": [1, 2, 5, 7, 10, 11, 12, 13, 15, 17], "travel": [1, 4], "popular": [1, 4, 5, 7, 12, 15, 16], "bike": 1, "chosen": [1, 2, 3, 4, 5, 10, 11, 12, 13, 15, 17], "noth": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "natur": [1, 2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15], "posit": [1, 2, 4, 6, 7, 10, 11, 12, 15, 16, 17], "race": 1, "faster": [1, 2, 14], "1st": [1, 2, 8], "2nd": [1, 6, 19], "3rd": [1, 6, 16, 19], "larger": [1, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "attitud": 1, "climat": [1, 17], "match": [1, 4, 7, 9, 13, 14], "belief": [1, 8, 9, 10, 11, 19], "temperatur": [1, 9], "rise": [1, 4, 9, 11, 12, 13, 15, 16], "activ": [1, 6], "why": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19], "current": [1, 2, 3, 4, 6, 10, 12, 13, 14, 15, 16, 17], "opposit": [1, 5, 11, 12, 13, 16], "endors": [1, 9, 15], "item": [1, 4, 7, 12], "violat": [1, 6, 12, 13, 14, 15, 16], "51": [1, 6, 11, 12, 13, 15, 17], "19": [1, 4, 6, 7, 9, 13, 14, 15, 16, 19], "togeth": [1, 3, 4, 5, 6, 7, 9, 10, 12, 13, 15, 16], "81": [1, 4, 12, 15], "willing": [1, 8, 9, 11, 12, 13, 14, 17], "partial": [1, 4, 5, 13, 14, 16], "49": [1, 13, 14, 17], "regist": [1, 6], "disagr": [1, 11, 15], "domin": [1, 5, 9, 11, 17], "90": [1, 3, 4, 6, 10, 12, 13, 15, 16, 19], "There": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "97": [1, 4, 10, 11, 15], "tell": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "gibberish": [1, 4, 11, 12], "contrast": [1, 4, 5, 9, 10, 11, 13, 14, 15, 17], "genuin": [1, 2, 4, 5, 6, 9, 11, 12, 13, 15, 16], "zero": [1, 3, 4, 5, 6, 7, 9, 12, 13, 15, 17], "degre": [1, 5, 9, 10, 11, 12, 13, 14, 15, 17], "celsiu": 1, "15": [1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "circ": 1, "yesterdai": 1, "18": [1, 3, 4, 5, 6, 7, 9, 10, 13, 14, 15, 16, 17], "moreov": [1, 10, 11, 16], "addit": [1, 2, 3, 4, 12, 13, 15], "subtract": [1, 3, 6, 12, 14, 16], "water": [1, 5], "freez": 1, "pointless": [1, 17], "multipli": [1, 3, 4, 9, 10, 12, 13, 14, 15, 16, 17], "divid": [1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "twice": [1, 10, 12, 14], "hot": [1, 9, 14, 17], "meaningless": [1, 4, 6, 9, 11, 14, 15, 16, 17], "claim": [1, 7, 9, 10, 11, 12, 13, 14, 15, 17], "neg": [1, 3, 4, 6, 9, 12, 15, 16], "again": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "2003": 1, "arriv": [1, 9, 10, 11, 16, 17], "2008": 1, "insan": [1, 10, 15], "0024": 1, "fourth": [1, 3, 4, 6, 8, 9, 14, 15], "consid": [1, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "rt": [1, 6, 13], "task": [1, 2, 4, 5, 6, 7, 9, 10, 12], "somebodi": 1, "difficult": [1, 2, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16], "alan": 1, "respond": [1, 6, 11, 12], "ben": [1, 14], "longer": [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 15, 17], "multipl": [1, 2, 3, 4, 9, 10, 11, 12, 13, 16, 19], "divis": [1, 2, 7, 10], "awar": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14], "regard": [1, 11, 14], "definit": [1, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "abstract": [1, 2, 3, 4, 10, 11, 12, 14, 16], "onc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "cameron": 1, "david": [1, 8, 17], "031": 1, "hi": [1, 3, 4, 8, 9, 10, 11, 13, 15, 17], "imposs": [1, 7, 8, 9, 10, 11, 14, 15], "occur": [1, 3, 4, 6, 9, 11, 13, 16, 17], "rule": [1, 2, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16], "strict": [1, 2, 17], "mathemat": [1, 2, 4, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "although": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "saw": [1, 3, 4, 5, 6, 8, 9, 12, 13, 14, 15, 16, 17], "school": [1, 2, 3, 4, 10, 11, 15, 16], "2002": [1, 4, 12, 19], "summaris": [1, 4, 7, 9, 10, 11, 12, 15], "cell": [1, 2, 3, 4, 6, 7, 12, 14, 16, 17], "tick": [1, 5, 13], "mark": [1, 3, 5, 6, 10, 13, 16], "correspond": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "hammer": 1, "home": [1, 3, 4, 5, 6, 10, 17], "unfortun": [1, 3, 4, 5, 6, 9, 10, 11, 12, 14, 15, 17], "checkmark": [1, 13, 14], "shock": [1, 4, 13], "hear": [1, 4, 12, 13, 15], "messier": [1, 13, 17], "classif": [1, 6], "scheme": [1, 4, 10, 14], "neat": [1, 6, 12, 15], "treat": [1, 3, 4, 6, 11, 12, 13, 15, 16, 17], "guidelin": [1, 12, 15], "intend": [1, 2, 4, 5, 9, 10, 12, 13, 14, 17], "likert": [1, 6, 9], "humbl": [1, 3, 5, 14], "bread": [1, 15, 17], "butter": [1, 17], "fill": [1, 4, 9, 13, 14, 15, 17], "hundr": [1, 7, 13, 14], "thousand": [1, 2, 3, 9, 11, 14], "odd": [1, 3, 4, 6, 7, 11, 12, 13, 14, 15, 17], "describ": [1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17], "pirat": 1, "freak": [1, 4], "awesom": [1, 5, 6, 9, 13, 17], "particip": [1, 2, 5, 6, 10, 11, 12, 13, 14, 16], "strongli": [1, 2, 6, 14, 15, 17], "clearli": [1, 2, 3, 4, 5, 9, 10, 12, 13, 14, 15, 16], "descriptor": 1, "necessari": [1, 2, 8, 9, 13, 14, 15], "handi": [1, 2, 3, 5, 7, 9, 10, 11, 12, 13, 15, 16], "limit": [1, 2, 3, 4, 9, 12, 13, 15, 16, 17], "prove": [1, 10, 11, 12, 14, 16], "On": [1, 3, 4, 5, 6, 7, 9, 10, 11, 13, 15, 16, 17, 19], "serious": [1, 2, 5, 9, 13], "act": [1, 2, 10, 12, 13], "five": [1, 3, 4, 5, 9, 10, 13, 14], "quasi": [1, 19], "therebi": [1, 4, 15], "creat": [1, 2, 3, 4, 5, 7, 9, 10, 12, 13, 14, 15, 16, 20], "seen": [1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 14, 15, 16, 17], "simpli": [1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 17], "accur": [1, 2, 4, 10, 14], "weight": [1, 12, 13, 14, 15, 16], "bathroom": 1, "step": [1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15], "off": [1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 16, 17, 20], "intellig": [1, 2, 4, 9, 10, 11], "mum": 1, "unreli": 1, "she": [1, 2, 10, 11, 13], "thick": 1, "moron": 1, "hold": [1, 5, 7, 9, 10, 12, 14, 16], "sack": 1, "potato": 1, "highli": [1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 17], "technic": [1, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16], "estim": [1, 4, 5, 8, 11, 12, 14, 16, 19], "bright": [1, 11], "her": [1, 4, 6, 9, 11, 13], "fluctuat": [1, 9], "wildli": [1, 9], "purpos": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "ensur": [1, 4, 9, 11, 13, 14, 17], "retest": 1, "date": [1, 2, 4, 11, 13, 14, 15, 16], "inter": 1, "rater": 1, "parallel": [1, 10, 16], "form": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17], "equival": [1, 2, 4, 6, 9, 11, 12, 13, 14, 15, 17], "perform": [1, 2, 5, 6, 7, 11, 13, 14, 15, 16], "function": [1, 2, 3, 4, 5, 9, 10, 12, 13, 14, 16, 17, 20], "ad": [1, 3, 4, 5, 7, 9, 11, 12, 13, 15, 16, 17], "possess": [1, 3, 10], "subject": [1, 4, 6, 9, 10, 13, 14, 16], "comput": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "cognit": [1, 10, 14, 19], "compon": 1, "exam": [1, 4, 11], "plu": [1, 3, 6, 9, 14, 15, 16], "piec": [1, 2, 3, 4, 5, 7, 9, 10, 11, 13, 17], "awai": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15], "normal": [1, 3, 4, 5, 6, 7, 10, 12, 19], "Then": [1, 3, 4, 5, 6, 7, 10, 12, 13, 14, 15, 16], "symbol": [1, 2, 3, 4, 5, 6, 10, 12, 15, 16], "denot": [1, 2, 4, 9, 10, 11, 12, 13, 14, 15, 16], "x_1": [1, 4, 9, 13, 16], "x_2": [1, 4, 9, 13, 16], "iv": [1, 8, 15], "dv": [1, 14, 15, 16], "behind": [1, 2, 3, 4, 5, 7, 11, 12, 13, 15, 16], "goe": [1, 2, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "properli": [1, 5, 9, 11, 12, 14, 15, 17, 20], "mislead": [1, 4, 5, 10, 11, 14], "never": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17], "aw": [1, 17], "altern": [1, 2, 10, 13, 14, 15, 16, 17, 19], "appeal": [1, 5, 11, 17], "modern": [1, 11, 14, 15], "exercis": [1, 5, 7, 10, 12, 13, 14, 15, 16, 17], "event": [1, 4, 9, 10, 11, 13, 16, 17], "kei": [1, 2, 3, 4, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17], "featur": [1, 2, 5, 15], "dure": [1, 2, 3, 4, 5, 6, 7, 16], "manipul": [1, 3, 6], "vari": [1, 3, 4, 9, 11, 12, 13, 15, 16], "causal": [1, 5, 11, 15], "kept": [1, 8, 9, 11, 14], "constant": [1, 4, 9, 13, 15], "balanc": [1, 4, 14, 17], "standard": [1, 2, 3, 5, 6, 9, 11, 12, 14, 15, 19], "solut": [1, 2, 4, 5, 6, 7, 9, 12, 13, 14, 15, 16], "randomis": [1, 11], "randomli": [1, 4, 9, 10, 12, 13, 14], "treatment": [1, 11, 14], "minimis": [1, 11, 13, 15], "elimin": [1, 5, 8, 11, 17], "unrealist": [1, 4], "grossli": [1, 15, 17], "uneth": [1, 10, 12], "smoke": 1, "lung": 1, "cancer": 1, "smoker": [1, 10], "proper": [1, 4, 6, 7, 8, 10, 11, 12, 15, 17], "poor": [1, 4, 11, 12, 13, 15], "diet": 1, "asbesto": 1, "mine": [1, 4, 5, 8, 9, 13], "whatev": [1, 2, 3, 4, 6, 7, 11, 12], "incid": [1, 5], "per": [1, 2, 5, 9, 13, 16], "se": [1, 9, 10, 13, 15], "meantim": [1, 14], "recal": [1, 4, 6, 10, 13, 14, 15, 16], "ethic": 1, "forc": [1, 2, 4, 5, 7, 10, 11, 12, 13, 17], "half": [1, 3, 4, 5, 6, 8, 9, 10, 11, 13, 15, 17], "unlik": [1, 3, 4, 5, 6, 7, 9, 11, 12, 13, 17], "respect": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 16], "confid": [1, 5, 9, 11, 13, 14, 15, 17], "murder": [1, 16], "broad": [1, 5, 6, 9, 13, 14, 15], "illustr": [1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17], "obtain": [1, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "crimin": [1, 11], "must": [1, 2, 3, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sampl": [1, 4, 5, 8, 9, 14, 15, 16, 19, 20], "solid": [1, 4, 9, 13, 14, 15, 16, 17], "investig": [1, 4, 14], "didn": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "artifactu": 1, "worth": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "aim": [1, 8, 9, 14, 15], "draw": [1, 4, 8, 9, 10, 12, 13, 14, 15, 16, 17], "isol": [1, 7], "neuropsycholog": 1, "damag": 1, "advantag": [1, 3, 4, 9, 10, 11, 15, 17], "abil": [1, 3, 7, 10, 11, 16], "invest": 1, "effort": [1, 3, 4, 6, 9, 11, 13, 14], "factor": [1, 3, 5, 6, 11, 13, 14, 15, 19], "valuabl": 1, "complement": [1, 4], "orient": [1, 5], "conceptu": [1, 2, 9, 10, 12, 14, 15, 16], "state": [1, 2, 3, 9, 10, 11, 12, 13, 14, 15, 17], "honesti": [1, 4], "notion": [1, 4, 5, 9, 14, 15], "rais": [1, 2, 4, 10, 14, 15, 17], "relev": [1, 3, 4, 9, 10, 11, 12, 14, 15, 16, 17], "quick": [1, 3, 4, 5, 11, 12, 13, 15], "guid": [1, 4, 10, 11, 13, 15, 17, 19], "tie": [1, 3, 14], "terribl": [1, 4, 9, 11, 13, 14, 15, 16], "except": [1, 2, 3, 4, 7, 8, 10, 11, 12, 13, 15, 17], "insofar": [1, 10, 12, 16], "appear": [1, 2, 3, 4, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "insid": [1, 2, 3, 4, 5, 6, 7, 10, 11, 13, 14, 15], "1000": [1, 4, 9, 10, 17], "essai": [1, 19], "spell": 1, "grammat": 1, "third": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17], "fewer": [1, 3, 5, 11, 12, 16], "conclud": [1, 9, 13, 14, 17], "skill": [1, 2, 3, 7, 8, 10, 14], "older": [1, 6], "superior": [1, 12, 17], "failur": [1, 17], "teas": 1, "apart": [1, 4, 12], "pattern": [1, 4, 6, 11, 12, 15, 16], "environ": [1, 2, 3, 7, 10, 11, 12, 13, 14], "drawn": [1, 5, 9, 10, 12, 13, 15], "subgroup": 1, "lack": [1, 5], "carri": [1, 17], "risk": 1, "populac": [1, 12], "threaten": 1, "popul": [1, 4, 9, 11, 13, 14, 15, 16, 19], "narrow": [1, 5, 6, 9, 10, 11], "phenomenon": [1, 10, 16], "concret": [1, 2, 4, 10, 11, 12, 14, 15, 16], "extrem": [1, 2, 4, 5, 7, 9, 12, 14, 15, 17, 20], "public": [1, 5, 9, 10, 17, 19], "toward": [1, 4, 9, 13, 14], "psychotherapi": 1, "visual": [1, 3, 4, 5, 7, 10, 13, 15, 16], "illus": 1, "spent": [1, 3, 4, 7, 9], "coupl": [1, 4, 6, 10, 14, 16, 17], "paragraph": [1, 4], "pose": [1, 14], "manner": 1, "lab": [1, 10], "learn": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "ridicul": [1, 13], "cheat": [1, 17], "stand": [1, 3, 4, 9, 13, 14, 16, 17], "theatr": 1, "300": [1, 5, 7], "cheater": 1, "deep": [1, 2, 3, 7, 9, 11, 12, 14], "stupid": [1, 2, 4, 5, 9, 10, 11, 12, 13], "pretend": [1, 4, 5, 9, 12, 13, 14, 16, 17], "gone": [1, 3, 13, 14, 20], "serv": [1, 3, 4, 7, 13, 15, 17], "experienc": [1, 14, 16], "hunch": 1, "evidentiari": [1, 10, 11], "pai": [1, 2, 4, 9, 11, 14, 16, 17], "attent": [1, 4, 5, 9, 10, 11, 14, 16, 17], "verbalis": 1, "criticis": [1, 10], "awri": 1, "uninform": 1, "crap": 1, "inspect": [1, 4, 5, 9, 10, 13, 14, 15], "gentli": 1, "substanti": [1, 4, 12, 13, 15], "untrain": 1, "polici": 1, "maker": 1, "proxi": 1, "politician": 1, "ignor": [1, 2, 3, 4, 6, 7, 9, 11, 13, 14, 15, 16, 17], "unfair": [1, 14], "scenario": [1, 4, 6, 9, 12, 13, 16, 17], "rigour": 1, "guarante": [1, 4, 10, 11, 13, 14, 15, 17], "easier": [1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 17], "eyewit": 1, "identif": [1, 19], "arrai": [1, 4, 6, 11, 12, 13, 14, 15, 16, 17], "suspect": [1, 3, 4, 5, 9, 10, 12, 13, 14, 15, 16], "shorter": [1, 10, 14], "crime": [1, 11], "wit": 1, "scare": [1, 5, 17], "polic": 1, "offic": [1, 15], "pressur": [1, 13], "fashion": [1, 2, 3, 4, 5, 10, 11, 14, 15, 16, 17], "unmeasur": [1, 15], "uncontrol": 1, "scope": [1, 4, 5, 9, 10, 12, 13, 14, 15], "vulner": [1, 4], "prevent": [1, 7, 9, 11], "swing": 1, "roundabout": 1, "shoe": [1, 10], "firmli": [1, 4, 5, 15], "foot": 1, "naturalist": 1, "By": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17], "lose": [1, 4, 5, 6, 8, 9, 15, 17], "wild": [1, 7], "reduc": [1, 5, 11, 13, 14, 15, 16], "bring": [1, 3, 13, 15, 17], "gain": [1, 9, 12, 14, 15, 16], "accident": [1, 9, 13], "Be": [1, 12, 14, 17], "rough": [1, 4, 12, 13, 15], "ahead": [1, 4, 10, 11, 12, 14], "unavoid": [1, 8], "ref": [1, 11, 13], "differentialattrit": 1, "characteris": [1, 6, 14], "23": [1, 3, 4, 9, 10, 13, 19], "uncertainti": [1, 5, 10, 13, 15], "decemb": 1, "2010": [1, 4, 5, 9, 11, 19], "februari": 1, "2011": [1, 5, 9, 11, 19], "queensland": 1, "flood": [1, 16], "januari": [1, 7, 17], "billion": 1, "dollar": [1, 2, 4, 9, 15], "kill": [1, 3, 5, 12, 13], "express": [1, 4, 5, 6, 10, 15, 16, 17], "temporarili": 1, "anti": [1, 14], "anxieti": [1, 13, 14, 16], "drug": [1, 2, 4, 6, 13, 14, 16], "administ": [1, 4, 6, 10, 12, 14, 16], "physiolog": [1, 16], "afterward": [1, 11, 12, 17], "lo": 1, "angel": 1, "earthquak": 1, "increas": [1, 4, 5, 9, 10, 13, 14, 15, 16], "tire": [1, 4], "children": 1, "rapidli": [1, 7], "trick": [1, 2, 3, 6, 7, 9, 12, 13, 15], "vocabulari": 1, "begin": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "declin": 1, "regardless": [1, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16], "uncommon": [1, 4, 6, 12, 13], "rel": [1, 2, 3, 4, 6, 9, 10, 13, 14, 15, 16, 17], "style": [1, 4, 5, 7, 10, 11, 12, 15], "session": 1, "familiar": [1, 2, 3, 4, 7, 12, 13, 14, 15, 16], "nervou": 1, "calm": 1, "auxiliari": 1, "mood": [1, 4, 14, 15, 16], "lead": [1, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16], "despit": [1, 8, 11, 12, 14], "imbal": 1, "80": [1, 4, 6, 9, 10, 11, 12, 13, 15, 17, 19], "troubl": [1, 3, 4, 14], "danger": [1, 2, 10, 11, 14, 15, 17], "manag": [1, 2, 3, 9, 12], "repres": [1, 3, 5, 6, 7, 9, 10, 12, 15, 16, 17], "dan": [1, 4, 5, 9, 14, 15, 17], "tediou": [1, 2, 4, 7, 12, 13, 14, 15, 16], "drop": [1, 4, 11, 13, 15, 16, 17], "stop": [1, 2, 4, 5, 6, 7, 9, 13, 14, 16, 17], "moral": [1, 5, 12, 17], "oblig": [1, 12], "remind": [1, 5, 7, 12, 15, 16], "random": [1, 4, 5, 7, 9, 11, 12, 13, 15, 16, 19, 20], "remain": [1, 4, 5, 6, 8, 9, 11, 14, 15, 16, 17], "conscienti": 1, "toler": [1, 11, 12], "boredom": 1, "decreas": [1, 4, 10, 13, 15], "homogen": [1, 12, 13], "condit": [1, 6, 11, 13, 14, 17], "gave": [1, 2, 4, 6, 12, 13, 14, 15, 16, 17], "easili": [1, 4, 5, 6, 7, 10, 12, 13, 15, 16], "main": [1, 2, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 17], "unrepres": 1, "heterogen": 1, "dumb": [1, 2, 4, 17], "insult": [1, 10], "obedi": [1, 2], "anyon": [1, 3, 4, 7, 10, 11, 12, 14, 16, 17], "chitchat": 1, "dubiou": [1, 17], "co": [1, 5, 10, 13], "disobedi": 1, "left": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "alreadi": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "duti": 1, "shot": [1, 10, 11], "simplest": [1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16], "mail": 1, "repli": 1, "subsampl": 1, "chose": [1, 10, 11, 12, 15], "wasn": [1, 2, 5, 9, 11, 13, 15], "page": [1, 4, 19], "return": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15], "miss": [1, 5, 6, 10, 14, 16, 17], "fell": [1, 11], "invas": 1, "essenc": [1, 3, 10, 11, 17], "lost": [1, 4, 8, 15, 16], "variat": [1, 2, 4, 10, 13, 14, 15, 16, 17, 19], "subsequ": [1, 5, 16, 17], "advers": 1, "grade": [1, 4, 13, 16], "explan": [1, 6, 9, 11, 12, 15, 16, 17], "lucki": [1, 12, 14], "transferr": 1, "luck": [1, 8, 10, 15], "transfer": 1, "score": [1, 3, 6, 8, 10, 11, 12, 13, 14, 15, 16], "back": [1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "tall": 1, "taller": 1, "feedback": 1, "tri": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 15, 16], "reinforc": [1, 13], "whenev": [1, 6, 9, 10, 11, 12, 13, 16], "trial": [1, 4, 9, 11, 14, 16, 17], "kahneman": [1, 12, 19], "tverski": [1, 12, 19], "intent": [1, 2, 4, 10, 11, 16, 17], "subtli": [1, 11, 13, 15, 16], "desir": [1, 5, 6, 7, 9, 10, 11, 13], "clever": [1, 4, 7, 9, 11, 12, 15, 19], "han": [1, 19], "1907": 1, "pfungst": [1, 19], "1911": [1, 19], "hothersal": [1, 19], "2004": [1, 5, 19], "hors": [1, 19], "becam": [1, 17], "famou": [1, 5, 10], "math": [1, 2, 3, 4, 9, 10, 12, 13, 14, 15, 16, 17], "theirs": 1, "doubl": [1, 14], "blind": [1, 14], "recognis": [1, 6, 7, 9, 10, 11, 13, 16], "ideal": [1, 4, 6, 7, 10, 11, 15, 17], "pull": [1, 4, 10, 12, 13, 14, 17], "interact": [1, 2, 3, 7, 11, 14], "credit": [1, 4], "avoid": [1, 3, 4, 7, 8, 11, 12, 13, 15, 17], "convei": [1, 4, 5, 11], "pygmalion": 1, "great": [1, 3, 4, 5, 6, 7, 9, 10, 13, 14, 15, 16], "occas": [1, 4, 5], "fulfil": 1, "prophesi": 1, "watch": [1, 4, 5, 6, 8, 9, 12, 15], "captur": [1, 2, 4, 5, 10, 11, 14, 17], "hawthorn": [1, 4, 5, 19], "alter": [1, 7, 9, 10, 11, 15], "factori": [1, 9, 14, 15], "outsid": [1, 5, 7, 9, 11, 15], "chicago": 1, "adair": [1, 19], "1984": [1, 19], "1920": [1, 12, 14], "light": [1, 2, 4, 11, 13, 15, 16, 17], "worker": [1, 17, 19], "product": [1, 4, 12, 16], "knew": [1, 3, 4, 7, 10, 13], "behav": [1, 3, 4, 6, 13], "adopt": [1, 6, 7, 9, 10, 11, 13, 17], "seek": [1, 11, 14], "hypothes": [1, 10, 12, 13, 14, 15, 17], "confirm": [1, 4, 10, 13, 15, 16], "exact": [1, 3, 4, 5, 10, 11, 13, 14, 15, 16, 19], "break": [1, 3, 4, 5, 6, 9, 13, 14, 15, 17], "destroi": [1, 9], "hypothesi": [1, 4, 8, 10, 14, 16, 19], "unnatur": [1, 15], "instruct": [1, 2, 7, 10, 12], "realist": [1, 7, 13, 16, 17], "apprehens": 1, "overli": 1, "chemic": 1, "inert": 1, "cure": [1, 13, 14, 15], "diseas": 1, "catch": [1, 6, 11, 15], "locat": [1, 3, 4, 5, 6, 9, 15], "wider": [1, 6, 9, 10, 15], "man": [1, 4, 17], "salari": 1, "upton": 1, "sinclair": 1, "couldn": [1, 4, 7, 14, 15, 16], "assumpt": [1, 4, 5, 6, 9, 10, 11, 17], "hilari": 1, "major": [1, 4, 5, 9, 11, 12, 13, 15], "immun": 1, "deceiv": 1, "flaw": [1, 2, 4, 11, 12], "hide": [1, 4, 5, 9, 10], "outright": 1, "unintention": 1, "slant": 1, "fabric": 1, "occasion": [1, 2, 3, 4], "clean": [1, 4, 5, 7, 16], "malici": 1, "profil": 1, "alleg": 1, "cyril": 1, "burt": 1, "andrew": 1, "wakefield": 1, "accus": [1, 12], "mmr": 1, "vaccin": 1, "autism": 1, "hwang": 1, "woo": 1, "suk": 1, "falsifi": 1, "stem": 1, "hoax": 1, "joke": [1, 12, 13], "eventu": [1, 2, 7, 9, 10, 11], "discov": [1, 2, 5, 9, 11, 12, 13, 14, 15, 16, 17], "discredit": 1, "piltdown": 1, "sokal": [1, 12, 19], "misrepresent": 1, "headlin": 1, "misrepres": 1, "dishonesti": 1, "due": [1, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sophist": [1, 4, 17], "simpson": 1, "paradox": [1, 19], "inconveni": 1, "variant": 1, "detect": [1, 5, 13, 14, 15, 16], "misdesign": 1, "built": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 16, 17], "correctli": [1, 2, 4, 11, 12, 15, 16, 17], "wrongli": 1, "sneaki": [1, 10, 12, 13], "dabbl": 1, "add": [1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "materi": [1, 5, 9, 10, 14], "reader": [1, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17], "unintent": 1, "eras": 1, "hoc": [1, 15], "hypothesis": [1, 13], "softwar": [1, 2, 3, 4, 11, 13, 14, 15], "unacknowledg": 1, "invent": [1, 2, 4, 11, 12], "reanalys": 1, "acknowledg": [1, 16, 17], "censor": 1, "pervas": 1, "journal": [1, 11, 12, 19], "publish": [1, 2, 6, 9, 11, 12, 13, 17, 19], "submit": 1, "finnegan": 1, "wake": [1, 13], "internalis": 1, "accept": [1, 3, 4, 7, 8, 9, 10, 11, 12, 14, 15, 16], "friend": [1, 4, 5, 7, 9, 13, 14], "stuf": 1, "null": [1, 13, 14, 15, 16, 17], "ioannidi": [1, 19], "2005": [1, 5, 12, 19], "depress": [1, 14], "titl": [1, 3, 10, 12, 13, 14, 15, 16, 17], "k\u00fchberger": [1, 19], "2014": [1, 19], "blindingli": [1, 10], "gullibl": 1, "automat": [1, 5, 10, 12, 15, 16, 19], "stereotyp": 1, "meant": [1, 2, 3, 11, 13, 15], "comprehens": [1, 3, 4, 6, 10, 16], "volum": 1, "justic": 1, "tightli": [1, 9, 13], "briefli": [1, 3, 4, 7, 11, 12, 13, 14, 15, 17], "white": [1, 3, 5, 7, 10, 11, 15, 19], "coat": [1, 10], "minut": [1, 5, 14], "search": [1, 3, 5, 6, 11, 14, 15], "dozen": [1, 4, 7, 9], "presidenti": 1, "indian": 1, "congress": 1, "1938": [1, 4], "sourc": [1, 2, 4, 5, 8, 10, 11, 14, 16, 20], "en": [1, 17], "wikiquot": 1, "org": [1, 10, 17], "wiki": [1, 17], "ronald_fish": 1, "awkward": [1, 4, 16], "oldest": [1, 12], "outdat": [1, 13, 14], "embarrass": 1, "wrote": [1, 2, 3, 6, 7, 10, 12, 13, 14, 15, 17], "revisit": [1, 3, 4, 9, 11, 15], "2018": 1, "karyotyp": 1, "ah": [1, 3, 4, 6, 12, 15], "daniel": [1, 4, 20], "giveawai": 1, "pronoun": 1, "default": [1, 3, 4, 5, 6, 10, 12, 13, 14, 15, 16, 17], "authori": 1, "voic": 1, "updat": [1, 10, 20], "besid": [1, 4, 9, 10, 13, 14, 15], "throughout": [1, 4, 5, 6, 8, 9, 11, 14, 15, 16, 17], "nicknam": 1, "strictli": [1, 4, 7, 11, 13, 14, 15, 17], "energi": 1, "heat": [1, 3], "cute": [1, 7], "annoyingli": [1, 12], "traditionalist": 1, "sigh": [1, 4, 14], "confus": [1, 3, 4, 5, 6, 9, 10, 11, 12, 14, 15, 16, 17], "afraid": [1, 8, 15], "fanci": [1, 4, 6, 7, 8, 15, 17], "dealt": [1, 3], "covari": [1, 4, 15, 19], "pass": [1, 4, 6, 7, 9, 12, 14, 15, 16, 17], "comfort": [1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 16], "argu": [1, 2, 3, 4, 6, 10, 11, 13, 15, 17], "disingenu": 1, "googl": [1, 2, 3], "scotsman": 1, "fallaci": 1, "emploi": 1, "ostens": 1, "whose": [1, 2, 4, 5, 9, 10, 11, 13], "fraudul": 1, "childish": 1, "robot": [2, 4, 9, 12, 17], "roger": [2, 6], "zelazni": [2, 6], "download": 2, "soon": [2, 3, 7, 12, 14, 15, 16], "push": [2, 16], "button": [2, 9, 10, 14, 15], "goal": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17], "system": [2, 3, 5, 10, 11, 17, 19], "arguabl": [2, 10], "easiest": [2, 4, 5, 7, 9, 11, 12, 13, 14, 15, 16], "program": [2, 3, 5, 9, 14, 15], "defin": [2, 3, 4, 7, 9, 11, 12, 13, 14, 15, 16, 17], "anywai": [2, 4, 5, 7, 9, 12, 13, 14, 15, 16], "excel": [2, 3, 4, 6, 9, 12, 14, 15], "mindless": [2, 4, 5, 9], "repetit": [2, 9, 13, 14, 16], "pencil": [2, 14], "pedagog": [2, 7], "spreadsheet": [2, 5], "microsoft": 2, "furthermor": [2, 6], "auto": 2, "format": [2, 3, 4, 5, 7, 9, 10, 12, 13, 14, 15, 16], "habit": [2, 4, 5], "dug": 2, "hole": 2, "proprietari": 2, "commerci": [2, 14], "packag": [2, 3, 4, 6, 10, 11, 12, 13, 14, 15, 16], "bui": 2, "glossi": 2, "compani": [2, 9, 10, 19], "shadowi": 2, "husk": 2, "cheapli": 2, "full": [2, 3, 4, 5, 11, 13, 14, 15, 16, 17], "winc": 2, "licenc": 2, "staggeringli": 2, "tag": 2, "The": [2, 3, 5, 6, 7, 8, 19, 20], "model": [2, 3, 5, 9, 10, 11, 19], "suck": [2, 14, 17], "blame": [2, 3, 17], "shell": [2, 7], "free": [2, 8, 11, 12, 14, 15, 20], "exorbit": 2, "licens": [2, 20], "appreci": [2, 3, 17], "extens": [2, 3, 5, 11, 14], "modul": [2, 3, 4, 9, 13, 14], "wide": [2, 5, 10, 13, 14, 15, 16, 17], "extend": [2, 3, 5, 8, 9, 10, 14, 15, 16, 17], "freeli": 2, "avail": [2, 3, 4, 5, 7, 8, 10, 11, 14], "machin": [2, 3, 7, 8], "art": [2, 7, 8, 15], "simpler": [2, 4, 5, 7, 9, 13, 14, 15, 16], "expert": [2, 8], "psycholog": [2, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19], "research": [2, 4, 5, 6, 9, 10, 12, 13, 14, 15, 17, 19], "onlin": [2, 3, 5], "autom": [2, 15], "artifici": [2, 16], "vision": 2, "speech": 2, "recognit": 2, "quirk": [2, 3, 11], "stuck": [2, 17], "strength": [2, 5, 6, 10, 13, 15, 17], "outweigh": [2, 11], "ok": [2, 3, 4, 5, 6, 7, 9, 14, 15], "text": [2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 20], "presum": [2, 4, 5, 6, 12], "instructor": 2, "access": [2, 3, 4, 6, 10, 12, 14, 15, 20], "librari": [2, 4, 5, 6, 19], "availab": 2, "rich": [2, 3, 17], "ecosystem": [2, 3], "settl": [2, 4, 9], "frustrat": [2, 4, 11, 12, 13, 15], "varieti": [2, 5, 13, 14, 16], "anaconda": [2, 3], "conscious": 2, "numpi": [2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15], "scipi": [2, 3, 4, 9, 10, 11, 13, 14, 15, 16, 17], "pingouin": [2, 3, 4, 13, 14, 15, 16], "stabl": 2, "cloud": [2, 11], "interfac": 2, "colab": [2, 3], "upload": 2, "analyz": [2, 14], "sensit": [2, 4, 15], "doubt": [2, 4, 11, 15], "safer": [2, 4, 17], "enrypt": 2, "send": [2, 5, 7], "file": [2, 4, 6, 7, 10, 12, 13, 14, 15], "id": [2, 6, 7, 12, 13], "integr": [2, 7, 9], "develop": [2, 3, 4, 7, 10, 12, 14, 16], "web": 2, "jupyt": [2, 3, 5, 7, 12], "notebook": [2, 3, 5, 7, 12], "unless": [2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 15], "otherwis": [2, 3, 6, 7, 10, 11, 12, 13, 17], "reccomend": [2, 14], "assembl": 2, "usabl": [2, 6], "block": [2, 3, 8, 12, 13, 14], "copi": [2, 3, 6, 7, 13, 14, 15, 17], "past": [2, 3, 4, 6, 7, 10, 15, 17], "deviat": [2, 9, 12, 14, 15, 16, 19], "seri": [2, 3, 4, 5, 6, 7, 10, 12, 15], "plain": [2, 3, 5, 15, 17], "forgot": [2, 4], "caption": [2, 13, 14, 15, 16], "link": [2, 7, 11, 15], "elsewher": [2, 14, 15], "anywher": [2, 3, 4, 6, 10, 12], "delet": [2, 3, 5, 15], "complain": [2, 7, 17], "hit": [2, 9], "enter": [2, 4, 6, 13, 15], "execut": [2, 3, 4, 7], "screen": [2, 4, 6], "extract": [2, 3, 4, 9, 15, 16], "sum": [2, 3, 4, 6, 7, 9, 12, 13, 15, 17], "print": [2, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "respons": [2, 4, 6, 9, 10, 11, 12, 13], "syntaxerror": [2, 6], "cannot": [2, 3, 4, 5, 8, 9, 10, 11, 12, 14, 16, 17], "liter": [2, 4, 6, 9, 11, 12, 15, 17], "spit": [2, 14, 15], "messag": [2, 3, 7, 12, 17], "keyboard": 2, "countri": [2, 4, 10, 11], "upset": 2, "legitim": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12], "user": [2, 3, 5, 12, 13, 14, 16], "nonsens": [2, 5, 13, 17], "whing": [2, 4], "shift": [2, 5, 6, 9, 11, 14, 17], "press": [2, 12, 19], "mindlessli": 2, "autocorrect": 2, "automaton": [2, 4, 5], "overrul": 2, "absurdli": 2, "uptight": 2, "redund": 2, "howl": 2, "anger": 2, "character": 2, "notori": 2, "inflex": 2, "liber": [2, 17], "zealous": 2, "conserv": [2, 12, 14, 17], "indent": [2, 7, 15], "enforc": [2, 17], "iron": [2, 10], "fist": 2, "lazi": [2, 3, 9, 10, 13, 14], "associ": [2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19], "arithmet": 2, "background": [2, 3, 5, 9, 10, 13], "extra": [2, 4, 6, 10, 15], "straight": [2, 4, 5, 11, 12, 13, 15, 16], "primari": [2, 9], "input": [2, 3, 4, 6, 7, 15, 16], "output": [2, 4, 5, 6, 7, 11, 12, 13, 14, 15, 16], "333": [2, 3, 4, 6], "57": [2, 4, 9, 13, 15], "61": [2, 4, 5, 10, 11, 14, 15, 16], "3477": 2, "integ": [2, 3, 4, 5, 7, 10], "modulu": 2, "ago": [2, 3, 15], "listen": [2, 11, 13], "n": [2, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "th": [2, 4, 12, 13, 14, 15, 16], "squar": [2, 3, 4, 6, 9, 10, 11, 12, 13, 15, 17, 19, 20], "cube": [2, 4], "4th": 2, "equat": [2, 4, 9, 10, 12, 13, 14, 15, 16, 17], "625": 2, "inde": [2, 4, 5, 8, 9, 10, 13, 14, 15, 16], "bonu": 2, "save": [2, 4, 6, 7, 12, 13, 14, 15, 16], "interim": [2, 17], "taught": [2, 10, 12, 13, 15, 17], "bedma": 2, "racket": 2, "xponent": 2, "ivis": 2, "ultipl": 2, "ddition": 2, "ubtract": 2, "continu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17], "enclos": 2, "bracket": [2, 3, 4, 6, 12, 15], "resolv": [2, 13], "unsur": 2, "measur": [2, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 19], "delv": 2, "harri": 2, "potter": 2, "350": [2, 13], "sale": [2, 3], "scene": 2, "rang": [2, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17], "properti": [2, 3, 4, 5, 6, 9, 10, 14, 15], "contain": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16], "direct": [2, 5, 6, 10, 13, 15, 19], "sign": [2, 3, 4, 6, 12, 13], "quest": 2, "strategi": [2, 3, 8, 12, 14, 15, 16, 17], "royalti": 2, "2450": 2, "revenu": 2, "verifi": [2, 4, 16], "straightforward": [2, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16], "reassign": 2, "psychotrop": 2, "donat": 2, "550": 2, "3000": 2, "overwrit": [2, 7], "sweet": [2, 3, 7, 13], "impli": [2, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "hourli": 2, "wage": [2, 4], "dismal": 2, "1968": 2, "dictionari": [2, 6, 12], "pow": 2, "decim": [2, 3, 6, 14, 15], "speak": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "convert": [2, 3, 4, 5, 7, 10, 11, 12, 13, 14, 15, 16, 17], "float": [2, 4], "fyi": 2, "quickli": [2, 3, 5, 9, 14, 16], "content": [2, 3, 4, 7, 9, 11, 12, 14], "loui": 3, "sullivan": 3, "alongsid": 3, "build": [3, 6, 10, 12, 14, 15, 16, 17], "broadli": [3, 4, 6], "mechan": [3, 6, 7, 9, 11, 13, 14, 16], "navig": [3, 7], "frame": [3, 10, 12, 13, 14, 16], "formula": [3, 4, 9, 12, 13, 16, 17], "document": [3, 7, 9, 10, 15], "avenu": 3, "assist": 3, "foundat": [3, 9, 10, 11, 19], "tackl": [3, 10], "charact": [3, 4, 6, 7, 11, 13, 14], "script": [3, 5], "seeker": 3, "1415": 3, "lover": 3, "7183": 3, "keeper": 3, "539539450000001": 3, "code": [3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 20], "readabl": [3, 4, 5, 12], "explanatori": 3, "command": [3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16], "peculiar": [3, 16], "flexibl": [3, 11], "welcom": 3, "newcom": 3, "kindli": [3, 5, 12], "reinvent": 3, "wheel": 3, "achiev": [3, 4, 5, 6, 7, 9, 10, 13, 15, 16], "shoulder": 3, "cuebal": 3, "webcom": 3, "xkcd": 3, "handful": 3, "somewher": [3, 4, 9, 11, 14, 17], "boil": 3, "hang": [3, 6, 7], "enviro": 3, "recommend": [3, 13, 15, 17], "concert": 3, "suit": [3, 5, 9, 12, 13], "click": [3, 9, 10, 14, 15], "dedic": 3, "matplotlib": [3, 4, 5, 9, 10, 11, 13, 14, 15, 16], "statmodel": [3, 15], "scikit": 3, "earli": [3, 7, 11, 13, 14], "snippet": 3, "virtual": 3, "browser": 3, "nameerror": 3, "traceback": [3, 4, 7], "er": [3, 12], "luckili": [3, 4, 5, 6, 7, 13, 15], "resort": [3, 14], "cumbersom": [3, 6], "portion": 3, "renam": [3, 4, 5, 6], "height": [3, 5, 9], "abbrevi": [3, 4, 5, 17], "thu": [3, 4, 5, 9, 12, 13, 14, 15, 16], "np": [3, 4, 6, 9, 10, 11, 12, 13, 14, 15], "conveni": [3, 6, 10, 11, 12, 13, 15], "recogn": [3, 7], "stick": [3, 4, 6, 7, 12, 14, 15, 16], "sake": [3, 4, 5, 6, 12, 13, 15], "fun": [3, 4, 15, 20], "why_you_gotta_be_so": 3, "loos": 3, "advic": [3, 5, 6, 7, 11, 12, 13, 14, 16], "mental": [3, 12, 13, 15], "familar": 3, "dwell": 3, "peak": [3, 5, 9], "ill": 3, "advisedli": 3, "info": [3, 5], "0x111b6a4d0": 3, "op": [3, 17], "kage": 3, "__init__": 3, "py": [3, 7, 10, 11, 12, 13, 14, 16], "ge": 3, "ython3": 3, "support": [3, 7, 11, 13, 15], "dir": [3, 4], "stage": [3, 5, 6, 8, 10, 11, 14], "anymor": [3, 4, 9, 13, 14, 16], "rid": 3, "undo": [3, 5], "forev": [3, 10], "del": 3, "reset": [3, 6], "harm": 3, "unus": 3, "comma": 3, "separ": [3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16], "store": [3, 4, 5, 6, 7, 9, 10, 12, 13, 15, 16], "ipynb": 3, "digress": [3, 6, 7, 9, 11, 12, 15], "excit": [3, 4, 6, 7, 14, 17, 20], "window": [3, 11, 15], "maco": 3, "linux": 3, "root": [3, 4, 9, 10, 12, 13, 15], "folder": [3, 10, 11], "directori": 3, "drive": [3, 8], "ethan": [3, 4, 5, 12, 13, 14, 16, 20], "pythonbook": [3, 4, 5, 6, 12, 13, 14, 15, 16, 17], "lsp": 3, "pdf": [3, 4, 9, 10, 12, 13, 14], "unix": 3, "mac": 3, "spirit": [3, 4], "backslash": 3, "forward": 3, "slash": 3, "tutori": [3, 13], "commonli": [3, 4, 6, 9, 12, 13, 14], "bear": [3, 10, 11, 15], "booksal": 3, "row": [3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "willi": [3, 6], "nilli": [3, 6], "haven": [3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 17], "suffic": [3, 6, 14], "column": [3, 4, 5, 12, 13, 14, 15, 16, 17], "github": [3, 15], "parenthes": [3, 12], "nicer": [3, 14, 15], "versatil": 3, "loop": [3, 10, 15], "calcul": [3, 5, 6, 9, 11, 12, 13, 17, 19], "to_csv": 3, "desktop": [3, 5], "my_fil": 3, "export": [3, 5], "bunch": [3, 4, 6, 7, 9, 10, 12, 13, 14, 15], "fit": [3, 5, 9, 14, 16, 19], "dataset": [3, 4, 10], "z": [3, 4, 14, 15], "outcom": [3, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 17], "unexpect": 3, "quotat": [3, 6], "forgotten": [3, 12, 13, 16], "depressingli": 3, "hello": 3, "aka": [3, 15], "int": [3, 7, 10], "14": [3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "foibl": 3, "storag": 3, "4392": 3, "cow": 3, "75": [3, 4, 5, 9, 13, 15, 16, 17], "pig": 3, "21": [3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 19], "hen": 3, "animals_tot": 3, "anim": [3, 12, 19], "103": [3, 7, 10, 14, 19], "face": [3, 4, 5, 9, 11, 14, 15, 17], "fraction": [3, 11], "234": [3, 6], "000003": [3, 13], "behavior": [3, 15, 19], "binari": [3, 10, 13], "round": [3, 5, 8, 12, 13, 14, 15, 16, 17], "3333333333333333": 3, "ten": [3, 11], "0001": 3, "1001": 3, "infinit": [3, 9, 10, 13], "repeat": [3, 6, 9, 10, 12, 13, 14, 15, 16, 17], "30000000000000004": 3, "mathematician": [3, 9, 10, 12], "blissfulli": 3, "unawar": [3, 11], "halfwai": 3, "nearest": 3, "neares": 3, "_": [3, 6, 7, 10, 12, 13, 14, 15, 16], "musn": 3, "tangent": 3, "esoterica": 3, "odditi": [3, 11], "conceiv": [3, 11], "000000000000001": 3, "0000000000000001": 3, "ugh": [3, 4, 6], "yup": [3, 12], "64": [3, 4, 12, 13, 15, 19], "processor": 3, "probabi": [3, 4, 7], "0000000000000009": 3, "alright": [3, 7], "p": [3, 4, 7, 9, 12, 13, 14, 15, 16, 19], "cat": [3, 7, 14], "appl": [3, 4, 6, 7, 13], "supercalifragilisticexpialidoci": [3, 7], "confusingli": 3, "42": [3, 4, 6, 7, 10, 13, 15, 16], "8374": 3, "87": [3, 10, 12, 16, 19], "gift": 3, "paperweight": 3, "doorstop": 3, "weapon": 3, "am": [3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 20], "stringss": 3, "catcatcatcatcat": 3, "whet": 3, "appetit": 3, "galaxi": 3, "IN": 3, "split": [3, 4, 6, 15], "l": [3, 7, 19], "r": [3, 4, 5, 9, 12, 13, 14, 16, 19, 20], "join": [3, 10], "ax": [3, 4, 5, 9, 10, 11, 13, 14, 15, 16], "xlxoxnxgx": 3, "xtxixmxex": 3, "xaxgxox": 3, "xixnx": 3, "xax": 3, "xgxaxlxaxxxyx": 3, "xfxaxrx": 3, "xaxwxaxi": 3, "replac": [3, 5, 6, 7, 10, 13, 16], "suburb": 3, "a_long_time_ago_in_a_galaxy_far_far_awai": 3, "fantast": [3, 20], "die": [3, 9], "christma": 3, "movi": [3, 15], "pronounc": 3, "conson": 3, "gif": 3, "opportun": [3, 4, 17], "arug": 3, "typeerror": [3, 7], "126": [3, 15], "minimum": [3, 4, 10, 13, 14], "arguement": [3, 5], "shop": 3, "pear": [3, 6, 7], "banana": [3, 6, 7], "65": [3, 4, 12, 13, 15, 16, 17, 19], "mix": [3, 7, 15, 19], "309": [3, 19], "enamor": 3, "realiz": [3, 7, 13, 14, 20], "strang": [3, 4, 6, 13, 15], "zeroeth": 3, "europ": [3, 17, 19], "floor": 3, "backward": 3, "stumbl": 3, "attribut": [3, 4, 6, 9, 11, 15, 16], "o": [3, 7, 11, 12, 19], "toi": [3, 4, 6, 11, 13, 16], "unknown": [3, 9, 11, 13, 15], "len": [3, 4, 5, 6, 7, 10, 12, 13, 14, 15], "programm": 3, "es": [3, 4, 13], "mutabl": 3, "immut": [3, 11], "shopping_list": 3, "shopping_tupl": 3, "grape": [3, 6], "appropri": [3, 4, 6, 9, 10, 11, 13, 15], "funni": [3, 4, 5, 10, 13, 15, 16], "truli": [3, 4, 6, 12, 15], "syntax": [3, 4, 5, 6], "pair": [3, 4, 9, 10, 14, 15], "entri": [3, 4, 12, 14, 16], "pet": 3, "my_pet": 3, "d2": [3, 17], "sleep": [3, 4, 5, 7, 14, 15], "dislik": 3, "loud": [3, 7], "nois": 3, "plan": [3, 14, 16], "my_week": 3, "todo": 3, "feed": [3, 4, 6, 12, 13], "fix": [3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 19], "demonstr": [3, 7, 9, 10, 11, 12, 14], "owl": 3, "bar": [3, 4, 9, 10, 13, 14, 15, 16], "burrow": 3, "barn": 3, "screech": 3, "spot": [3, 7], "finch": 3, "goldfinch": 3, "crossbil": 3, "redpol": 3, "grosbeak": 3, "sparrow": 3, "song": [3, 11], "throat": 3, "captain": 3, "jack": 3, "bird": 3, "mishmosh": 3, "bedfellow": 3, "judgi": 3, "element": [3, 4, 6, 7, 10, 11, 12, 13, 15, 17], "uniqu": [3, 4, 5, 10, 11, 12, 14, 16], "favorit": [3, 4], "color": [3, 4, 9, 10, 11, 12, 13, 14, 15], "our_color": 3, "red": [3, 10, 12, 15], "orang": [3, 4, 5, 13, 15], "yellow": 3, "sentenc": [3, 7, 14, 17], "wonder": [3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17], "v": [3, 4, 5, 10, 12, 13, 19], "u": [3, 10], "blank": [3, 9], "space": [3, 5, 9, 15], "exclam": 3, "toe": 3, "remeb": 3, "lowercas": [3, 7, 16], "__add__": 3, "__class__": 3, "__contains__": 3, "__delattr__": 3, "__dir__": 3, "__doc__": 3, "__eq__": 3, "__format__": 3, "__ge__": 3, "__getattribute__": 3, "__getitem__": 3, "__getnewargs__": 3, "__gt__": 3, "__hash__": 3, "__init_subclass__": 3, "__iter__": 3, "__le__": 3, "__len__": 3, "__lt__": 3, "__mod__": 3, "__mul__": 3, "__ne__": 3, "__new__": 3, "__reduce__": 3, "__reduce_ex__": 3, "__repr__": 3, "__rmod__": 3, "__rmul__": 3, "__setattr__": 3, "__sizeof__": 3, "__str__": 3, "__subclasshook__": 3, "capit": [3, 7, 12], "casefold": 3, "center": [3, 6, 13, 14, 16], "encod": [3, 16], "endswith": 3, "expandtab": 3, "format_map": 3, "isalnum": 3, "isalpha": 3, "isascii": 3, "isdecim": 3, "isdigit": 3, "isidentifi": 3, "islow": 3, "isnumer": 3, "isprint": 3, "isspac": 3, "istitl": 3, "isupp": 3, "ljust": 3, "lstrip": 3, "maketran": 3, "partit": 3, "removeprefix": 3, "removesuffix": 3, "rfind": 3, "rindex": 3, "rjust": 3, "rpartit": 3, "rsplit": 3, "rstrip": 3, "splitlin": 3, "startswith": [3, 7], "strip": [3, 5, 7, 15], "swapcas": 3, "translat": [3, 4, 5, 7, 9, 10, 11, 12, 13, 15, 16, 20], "zfill": 3, "yike": [3, 4, 6, 7], "__": 3, "front": [3, 13, 15], "meddl": 3, "1231": 3, "__class_getitem__": 3, "__delitem__": 3, "__iadd__": 3, "__imul__": 3, "__reversed__": 3, "__setitem__": 3, "append": [3, 4, 7, 10, 11, 15], "insert": [3, 10, 16], "pop": [3, 8, 9, 10, 11, 13, 17], "attributeerror": [3, 4], "113": [3, 10], "friendli": [3, 4, 12], "342": 3, "zebrafish": 3, "hei": [3, 5, 10], "cool": [3, 4, 7, 11, 12, 13, 14], "retriev": 3, "mishmsoh": 3, "layer": 3, "enorm": [3, 9], "progress": [3, 7, 9, 12], "depth": [3, 9, 10], "345": [3, 19], "432": 3, "575": 3, "43": [3, 12, 13, 14, 15, 16], "32": [3, 4, 5, 11, 12, 13, 14, 16], "565": 3, "233": [3, 14], "865": 3, "45645": 3, "45": [3, 4, 5, 9, 13, 14, 15, 16], "332": 3, "453": [3, 16], "346": 3, "324": [3, 4, 7], "fifth": 3, "seventh": [3, 8], "17": [3, 4, 5, 6, 7, 9, 10, 13, 14, 15, 16, 19], "primarili": [3, 8, 13, 16], "crucial": [3, 7, 10], "wrangl": [3, 5, 14], "353": 3, "minim": 3, "nasti": [3, 7, 15], "bicker": 3, "chiefli": 3, "unpleas": 3, "yeah": [3, 8, 9, 15], "haha": [3, 4, 6], "compact": [4, 5, 13, 15], "understood": [4, 9, 12], "oppos": [4, 5, 9, 13, 15, 16], "inferenti": [4, 9, 10, 11, 17], "synonym": 4, "load": [4, 5, 7, 12, 13], "afl_finalist": [4, 5], "afl_margin": [4, 5], "githubusercont": [4, 5, 6, 12, 13, 14, 15, 16, 17], "ethanwe": [4, 5, 6, 12, 13, 14, 15, 16, 17], "footbal": [4, 5, 14], "leagu": [4, 5], "afl": [4, 5, 13], "win": [4, 5, 8, 9, 10, 11, 13], "margin": [4, 5, 6, 11, 12, 13, 16, 17], "176": [4, 5], "game": [4, 5, 8, 9, 10, 14], "season": [4, 5, 10], "400": [4, 5, 7, 8], "team": [4, 5, 9, 10], "200": [4, 7, 12], "period": [4, 5, 12], "1987": [4, 5], "56": [4, 5, 9, 12, 13, 15, 19], "31": [4, 5, 6, 10, 12, 13, 15, 16, 17], "171": 4, "172": [4, 15], "38": [4, 5, 13, 14, 15, 19], "173": 4, "29": [4, 5, 6, 9, 11, 13], "174": 4, "175": [4, 19], "pictur": [4, 5, 8, 9, 10, 11, 14, 15, 17], "histogram": [4, 9, 10, 13, 14, 15, 16, 17], "histplot": [4, 5, 9, 10, 11, 13, 14, 15, 16], "graph": [4, 9, 10, 14, 19], "represent": [4, 15, 16], "frequenc": [4, 5, 6, 9, 10, 11, 12, 14, 16], "despin": [4, 5, 9, 10, 11, 12, 13, 14, 15, 16], "athough": 4, "gist": [4, 9], "condens": [4, 12], "li": [4, 9, 10, 11, 15, 16, 17], "frac": [4, 9, 10, 12, 13, 14, 15, 16, 17], "183": 4, "36": [4, 11, 14, 15], "excus": [4, 15], "notat": [4, 9, 10, 11, 13, 14, 15, 16, 17], "attach": [4, 6, 9, 10, 11, 15], "subscript": [4, 12, 13, 16, 17], "x_n": 4, "x_i": [4, 10, 13, 15], "x_3": [4, 9], "x_4": [4, 9], "x_5": [4, 9], "x_": [4, 13, 15, 16], "summat": [4, 12, 14, 16], "scriptstyl": 4, "shorten": [4, 11, 12], "sum_": [4, 10, 12, 13, 14, 15, 16], "clarifi": 4, "box": [4, 9, 10, 11, 12, 15], "circumst": [4, 11, 14], "vector": [4, 6, 10, 12, 13, 15], "6213": 4, "dtype": [4, 6, 12], "int64": [4, 6, 12], "whatsoev": [4, 13], "slice": [4, 7], "ado": 4, "sudden": 4, "amongst": 4, "rout": 4, "30113636363637": 4, "ascend": [4, 6], "mathbf": 4, "sixth": 4, "sort_valu": [4, 6, 14], "sorted_margin": 4, "84": [4, 10, 13, 14, 15, 19], "165": 4, "117": [4, 10], "123": 4, "136": [4, 16], "peek": [4, 5, 6, 17], "centr": [4, 5, 6, 15, 17], "graviti": [4, 17], "smaller": [4, 10, 12, 13, 14, 15, 16, 17], "nomin": [4, 5, 12, 13, 16, 17], "scale": [4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 19, 20], "ordin": [4, 13], "interv": [4, 5, 6, 13, 14, 15, 17], "ratio": [4, 5, 9, 12, 13, 14, 15, 16, 17, 20], "asymmetr": 4, "bodi": 4, "drag": 4, "tail": [4, 5, 6, 9, 11, 13], "bob": 4, "incom": [4, 15], "kate": 4, "jane": 4, "58": [4, 6, 11, 13, 16], "bill": [4, 10], "043": [4, 15], "750": 4, "500": [4, 5, 11], "mock": 4, "septemb": [4, 7], "senior": 4, "commonwealth": 4, "bank": 4, "sidewai": 4, "craig": [4, 12, 19], "jame": [4, 15], "chief": 4, "economist": [4, 10], "trade": [4, 13, 15], "arm": [4, 10], "commsec": 4, "mortgag": 4, "rent": 4, "oblivi": 4, "market": 4, "cba": 4, "war": [4, 8], "doomsay": 4, "intern": [4, 15], "household": 4, "citi": [4, 9, 12, 17], "nationwid": 4, "san": [4, 16], "francisco": 4, "york": [4, 19], "auckland": 4, "vancouv": 4, "analyst": [4, 5, 7, 17], "led": [4, 8, 14], "bottom": [4, 5, 9, 10, 13, 15], "demographia": 4, "um": [4, 13, 14, 17], "seriou": [4, 6, 11, 14], "discrep": [4, 12, 13, 17], "domest": 4, "mid": [4, 6], "asset": 4, "earn": 4, "wealthiest": 4, "ralph": 4, "norri": 4, "multi": 4, "million": [4, 10], "packet": 4, "underst": 4, "quantit": [4, 5], "organis": [4, 6, 8, 12, 14, 16], "elementari": [4, 9], "insight": 4, "lender": 4, "vest": 4, "swath": 4, "secur": [4, 5], "loan": 4, "outlier": [4, 5, 15], "belong": [4, 6, 10, 12, 14], "action": [4, 7, 11, 15, 17], "dri": 4, "suspici": [4, 5, 8, 11, 13, 15], "trickier": [4, 9, 11, 12, 13, 14, 16], "robust": [4, 15, 17, 19], "remedi": [4, 13, 14], "discard": 4, "smallest": [4, 9, 11, 13, 14, 15], "preserv": [4, 6, 15, 16, 17], "regular": [4, 6, 7, 13, 14, 16], "famili": [4, 14, 15], "span": [4, 5, 6], "tempt": [4, 5, 11, 12, 13, 14, 15, 16, 17], "rest": [4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16], "dataset2": 4, "trim_mean": 4, "dataset3": 4, "head": [4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 17], "finalist": [4, 5], "melbourn": [4, 5], "carlton": [4, 5], "essendon": [4, 5], "geelong": [4, 5], "16": [4, 6, 7, 9, 10, 12, 13, 14, 15], "collingwood": [4, 5], "west": [4, 5], "coast": [4, 5], "22": [4, 9, 10, 11, 12, 13, 14, 15, 16], "glad": 4, "value_count": [4, 5, 12, 14], "39": [4, 5, 10, 11, 14, 15, 16], "north": [4, 5], "27": [4, 5, 6, 14, 15, 16, 19], "26": [4, 5, 6, 13, 14, 16], "adelaid": [4, 5, 9, 10, 17], "sydnei": [4, 5, 9], "brisban": [4, 5], "st": [4, 5, 10, 15, 19], "kilda": [4, 5], "western": [4, 5], "bulldog": [4, 5], "port": [4, 5, 10], "richmond": [4, 5], "fremantl": [4, 5], "max": [4, 5, 10, 13, 15], "freq": [4, 12], "bet": [4, 8, 9, 11, 15, 17], "consol": [4, 7], "prize": [4, 13], "modal": 4, "spread": [4, 5], "minu": [4, 12, 13, 14, 16], "maximum": [4, 9, 10, 13], "116": [4, 5], "min": [4, 5, 12, 13, 15], "omit": [4, 9, 11, 13, 14], "quantifi": [4, 10, 11, 14, 17], "worst": [4, 17], "unduli": 4, "110": [4, 10], "iqr": 4, "25th": [4, 5], "quantil": [4, 6, 10, 13, 15], "75th": [4, 5], "percentil": [4, 5, 6, 10, 12], "10th": [4, 8], "50th": 4, "folk": [4, 10, 11, 17], "quarter": 4, "slowli": [4, 11, 14], "52": [4, 12, 13, 14, 16, 19], "irritatingli": [4, 15], "acronym": [4, 10], "ambigu": [4, 11, 12, 13, 17], "aad": 4, "unambigu": [4, 9, 13], "mbox": [4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "labori": [4, 10, 14], "x_bar": 4, "ab": [4, 6, 11, 15], "elegantli": 4, "eleg": [4, 5, 15], "ordinari": [4, 13, 15], "statsmodel": [4, 10, 14, 15, 16], "pandas_mad": 4, "statsmodels_mad": 4, "var": [4, 10, 11, 13, 14], "clearer": [4, 5, 13, 14, 16], "shortli": [4, 7, 9, 11, 15, 16], "376": [4, 6], "817": [4, 19], "96": [4, 10, 13, 14, 15], "\u3164\u3164": 4, "burn": [4, 12, 13], "reveal": [4, 10, 12, 15], "fortun": [4, 5, 9, 11, 12, 13, 15, 17], "405": 4, "broken": [4, 11, 12, 14, 17], "typo": [4, 5, 7, 12], "idiot": [4, 15, 17], "tini": [4, 7, 9, 10, 11, 12, 13, 14, 15], "switch": [4, 5, 8, 9, 14, 16, 17], "empti": [4, 5, 7, 14, 17], "squared_error": 4, "675": 4, "9718168904958": 4, "679": 4, "834512987013": 4, "hm": [4, 8, 13, 14, 15], "outlin": [4, 9, 10, 13, 16], "initi": [4, 5, 12, 14], "paramet": [4, 9, 11, 12, 13, 14, 15], "pvarianc": 4, "population_vari": 4, "sample_vari": 4, "9718168904959": 4, "mysteri": [4, 10, 13], "novel": [4, 14], "hint": [4, 11, 12, 15], "quantiti": [4, 9, 11, 12, 13, 14, 15, 16], "uninterpret": 4, "accord": [4, 11, 13, 15, 17], "footi": [4, 5, 14], "unit": [4, 6, 15], "rmsd": 4, "neatli": 4, "nobodi": 4, "clue": 4, "01": [4, 10, 11, 12, 13, 14, 15, 16, 17], "sd": [4, 9, 10], "std": [4, 5, 13, 14, 15, 16], "dev": [4, 13, 14], "sqrt": [4, 9, 10, 12, 13, 14, 15], "stdev": [4, 10, 13], "hat": [4, 10, 12, 13, 14, 15, 16], "sigma": [4, 9, 10, 13, 14, 15], "073636359108274": 4, "thumb": [4, 15], "symmetr": [4, 6, 13], "bell": [4, 9, 10], "shape": [4, 5, 6, 10, 12, 15], "shade": [4, 5, 9, 11], "distanc": [4, 14, 15], "unreason": [4, 6, 8, 13, 16, 17], "previous": [4, 6, 12, 13, 14, 15, 16], "07": [4, 16], "4826": 4, "manual": [4, 5, 7, 12, 13, 14, 15], "91074326085924": 4, "curv": [4, 5, 9, 10, 13], "minor": [4, 9, 10, 11], "attract": [4, 5], "hood": [4, 5, 16], "pyplot": [4, 5, 9, 10, 11, 13, 14, 15, 16], "plt": [4, 5, 9, 10, 11, 13, 14, 15, 16], "url": [4, 5, 10], "skewdata": 4, "df_skew": 4, "subplot": [4, 5, 9, 10, 13, 14, 15, 16], "figsiz": [4, 5, 9, 10, 13, 14, 15], "ax1": [4, 5, 9, 10, 13, 14], "loc": [4, 5, 6, 10, 13, 14, 16], "negskew": 4, "binwidth": [4, 9, 10, 11, 13], "02": [4, 11, 12, 15, 17], "ax2": [4, 5, 9, 10, 13, 14], "noskew": 4, "ax3": [4, 5, 13], "posskew": 4, "set_titl": [4, 5, 9, 10, 11, 13, 15], "xticklabel": [4, 10], "yticklabel": [4, 10], "tick_param": [4, 9, 10, 15], "asymmetri": [4, 11], "panel": [4, 5, 9, 10, 13, 14, 15, 16], "axi": [4, 6, 9, 10, 15], "skipna": 4, "7804075289401982": 4, "pointi": 4, "file1": 4, "kurtosisdata": 4, "file2": 4, "kurtosisdata_ncurv": 4, "df_kurtosi": 4, "mu": [4, 9, 10, 13, 14, 16], "linspac": [4, 9, 10, 12, 13, 14, 15], "norm": [4, 9, 10, 13, 14, 17], "platykurt": 4, "mesokurt": 4, "leptokurt": 4, "twinx": [4, 9, 10], "lineplot": [4, 9, 10, 11, 12, 13, 14], "40000": 4, "black": [4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17], "flat": [4, 10], "set_xlim": [4, 13], "set_ylim": [4, 10, 13, 16], "25000": 4, "assess": [4, 11, 13, 14, 15, 16], "fischer": 4, "pearson": [4, 11, 12, 14, 15, 19], "10109718805638757": 4, "06434955786516161": 4, "0643495578651616": 4, "bia": [4, 10, 11, 13, 15, 17, 19], "eyebal": 4, "dramat": [4, 9], "000000": [4, 5, 12, 13, 15], "301136": [4, 5], "073636": [4, 5], "750000": [4, 5, 13], "500000": [4, 5, 12], "quartil": [4, 5], "blowout": 4, "operationalis": [4, 9, 10, 11, 15], "exce": 4, "132": [4, 6, 15], "cryptic": 4, "clinical_trial_data": 4, "df_clintrial": 4, "therapi": [4, 14, 16], "mood_gain": [4, 14, 16], "placebo": [4, 14, 16], "anxifre": [4, 14, 16], "shed": 4, "nan": [4, 13, 14, 15, 16], "883333": 4, "533854": 4, "100000": [4, 13], "425000": 4, "850000": 4, "300000": [4, 13], "800000": 4, "grumpi": [4, 5, 14, 15], "70": [4, 9, 10, 11, 12, 13, 16, 17, 19], "shockingli": [4, 7, 14], "159": 4, "016": [4, 15], "standardis": [4, 13, 16], "lone": 4, "gotten": [4, 11, 14, 17, 20], "pseudo": 4, "z_i": 4, "transform": [4, 10, 14, 15, 16, 17], "zscore": [4, 15], "subtleti": [4, 5], "heurist": [4, 12, 13], "extravers": 4, "extravert": 4, "grumpier": [4, 15], "unusu": [4, 5, 7, 12, 15, 16, 17], "sport": 4, "heart": [4, 9, 10, 12, 15], "fictiti": [4, 10, 14], "infant": 4, "son": [4, 10, 15], "affect": [4, 11], "nerd": [4, 7, 15], "parenthood": [4, 5, 15], "dan_sleep": [4, 5, 15], "baby_sleep": [4, 5, 15], "dan_grump": [4, 5, 15], "59": [4, 5, 9, 10, 11, 13, 15], "91": [4, 5, 10, 14, 15], "66": [4, 5, 6, 10, 13, 15], "71": [4, 5, 9, 13, 14, 15, 16], "55": [4, 5, 9, 11, 13, 14, 15], "67": [4, 5, 9, 13, 14, 15], "00000": 4, "965200": 4, "049200": 4, "71000": 4, "015884": 4, "074232": 4, "04967": 4, "011492": 4, "840000": 4, "250000": [4, 13], "41": [4, 5, 6, 11, 13, 15], "292500": 4, "030000": 4, "950000": 4, "740000": 4, "635000": 4, "070000": 4, "graphic": [4, 10, 13, 14, 16], "depict": [4, 5, 9, 10, 13, 15, 16], "grump": [4, 5, 15], "sharei": [4, 9, 10, 13, 15], "suptitl": [4, 9, 10], "readership": [4, 9, 12, 16], "slept": [4, 15], "03": [4, 11, 12, 13, 14, 16], "sleepi": [4, 15], "scatterplot": [4, 13, 15], "set_xlabel": [4, 15, 16], "set_ylabel": [4, 15, 16], "sleep_scatter1": 4, "stronger": [4, 11, 12, 15, 17], "neater": 4, "predict": [4, 8, 9, 11, 12, 13, 14, 15, 16, 19], "sleep_scatter2": 4, "sleepier": 4, "sleep_scatt": 4, "fig2": 4, "explicit": [4, 6, 10, 11, 12, 15, 16], "tradition": [4, 10, 13, 14, 16], "r_": [4, 12, 14], "corr": [4, 14, 15], "cov": 4, "rneg": 4, "val": [4, 10, 13, 14, 15], "enumer": [4, 10, 13, 14, 15, 16], "multivariate_norm": 4, "y_i": [4, 15], "cross": [4, 12, 13, 16, 17], "unrel": 4, "magnitud": [4, 11, 14], "contribut": [4, 14, 15, 16, 19], "oversimplif": [4, 13], "_x": 4, "_y": 4, "usag": [4, 13], "9033840374657269": 4, "matrix": [4, 6, 15, 19], "627949": [4, 15], "903384": [4, 15], "098408": [4, 15], "565964": [4, 15], "010434": [4, 15], "076479": [4, 15], "exagger": [4, 13], "benchmark": 4, "judg": [4, 11, 13, 15], "deem": [4, 11, 15], "moder": [4, 13, 14], "neglig": [4, 13, 17], "index": [4, 5, 6, 10, 12, 14, 15, 16, 17], "anscomb": [4, 19], "quartet": 4, "816": [4, 15], "y1": [4, 9, 13, 14], "04": [4, 10, 11, 13, 15, 16], "y2": [4, 9, 13, 14, 15], "74": [4, 10, 13, 15], "77": [4, 10], "y3": [4, 12, 14], "73": [4, 9, 10, 13, 14, 16, 19], "x4": 4, "y4": [4, 12], "76": [4, 13, 15], "47": [4, 6, 13, 14, 16, 19], "89": [4, 10], "81642051634484": 4, "8162365060002427": 4, "8162867394895982": 4, "8165214368885031": 4, "spectacularli": 4, "shortcom": [4, 16], "linear": [4, 6, 14], "reward": [4, 9], "scribbl": [4, 7, 15], "rankcorr": 4, "receiv": [4, 5, 6, 13, 16], "40": [4, 6, 9, 10, 11, 12, 13, 16], "79": [4, 10, 13, 15], "85": [4, 10, 15, 17], "88": [4, 10, 14, 16], "9094019658612525": 4, "regplot": [4, 5, 10, 15], "ci": [4, 10, 13, 15, 16], "set_linestyl": 4, "lowest": [4, 6, 12, 15, 17], "laziest": 4, "semest": [4, 7, 13], "specifii": [4, 10], "ranked_hour": 4, "ranked_grad": 4, "9999999999999999": 4, "spearman": 4, "rho": 4, "skip": [4, 7, 12, 13, 14, 15], "clariti": [4, 9], "gloss": [4, 10, 14], "safest": 4, "unhelp": [4, 10], "nanmean": 4, "nanmedian": 4, "nanpercentil": 4, "nanmax": 4, "nanmin": 4, "nansum": 4, "nanstd": 4, "16496580927726": 4, "peski": 4, "var1": 4, "var2": 4, "var3": 4, "niggl": [4, 6], "demonin": 4, "demoni": 4, "ddof": 4, "nancorr": 4, "explor": [4, 7, 13, 16], "parenthood2": 4, "introducd": 4, "morn": [4, 9, 15], "976923": 4, "114494": 4, "152174": 4, "020409": 4, "046821": 4, "851574": 4, "285000": 4, "460000": 4, "200000": 4, "785000": 4, "610000": 4, "eight": [4, 14], "614723": 4, "903442": 4, "076797": 4, "567803": 4, "058309": 4, "005833": 4, "handili": 4, "untru": 4, "dropna": 4, "639498": 4, "899515": 4, "061329": 4, "586561": 4, "145558": 4, "068166": 4, "reliabl": [4, 10, 15], "paranoid": [4, 15], "cue": [4, 15], "rubbish": [4, 15], "reang": 4, "beast": 4, "wish": [4, 6], "touch": [4, 5, 6, 10], "death": [4, 5], "tragedi": 4, "josef": 4, "stalin": 4, "potsdam": 4, "1945": 4, "950": 4, "soviet": [4, 9, 19], "repress": [4, 19], "1937": 4, "ellman": [4, 19], "infam": 4, "deni": 4, "multitud": 4, "incomprehens": [4, 12], "visualis": [4, 5, 9, 15], "cold": [4, 10], "summon": 4, "saturdai": [4, 7], "lifetim": [4, 17], "gulag": 4, "dull": 4, "dread": 4, "stomach": 4, "chill": 4, "stalinist": 4, "combin": [4, 5, 6, 7, 14, 16, 17], "wipe": 4, "woman": 4, "aliv": [4, 10], "atroc": 4, "audienc": [4, 5, 12], "sole": [4, 5, 12], "non": [4, 5, 6, 7, 9, 10, 11, 12, 14, 15], "competit": [4, 8, 11, 12, 14], "greek": [4, 11, 15], "letter": [4, 6, 7, 10, 11, 12, 15, 16], "analogu": [4, 14], "alphabet": [4, 16], "pi": [4, 9], "numb": 4, "pain": [4, 5, 12, 13, 14, 16], "dot": [4, 5, 13, 15, 16], "thorough": [4, 10], "net": [4, 17], "au": [4, 17], "09": [4, 9, 11, 13, 14, 15, 16], "3021480": 4, "htm": 4, "subfield": 4, "grappl": 4, "cope": 4, "picki": [4, 5], "refresh": [4, 15], "flip": [4, 9, 11, 12], "loss": [4, 5, 8, 10], "coolest": 4, "introduct": [4, 6, 8, 12, 14, 17, 19], "tack": [4, 6], "caution": [4, 6], "warrant": [4, 13], "meaningfulli": [4, 11], "pearsonr": 4, "spearmanr": 4, "mcar": 4, "ungrammat": 4, "edward": 5, "tuft": 5, "exploratori": 5, "stylis": 5, "redraw": [5, 15], "snow": 5, "cholera": 5, "map": [5, 9, 11, 15], "circl": 5, "outbreak": 5, "pump": 5, "1854": 5, "simplic": [5, 6, 13, 14, 15], "street": 5, "viewer": 5, "casual": 5, "dr": [5, 13], "arrang": [5, 10, 14], "Such": 5, "twofold": 5, "struggl": [5, 17], "customis": 5, "futur": [5, 10, 11, 17], "paint": 5, "canva": 5, "onto": [5, 6, 7, 9, 11, 14, 15, 16], "stroke": 5, "throw": [5, 7, 9, 15], "painter": 5, "particularli": [5, 11, 14, 15, 16], "headach": [5, 16], "metaphor": 5, "inadvert": 5, "oil": 5, "watercolour": 5, "analog": [5, 11, 13, 14, 16, 17], "brush": [5, 13], "creativ": [5, 11], "custom": [5, 10, 12], "eas": [5, 13], "greatli": 5, "simplifi": [5, 10, 12, 16, 17], "sooner": 5, "dip": [5, 7], "stencil": 5, "impressionist": 5, "cubism": 5, "artist": 5, "impos": [5, 7, 12], "overarch": 5, "aesthet": 5, "constraint": [5, 9, 12, 13, 14, 15, 16, 17], "coher": [5, 6], "platform": 5, "specialis": [5, 7], "fibonacci": 5, "customari": [5, 7], "digit": [5, 7], "bezo": 5, "chart": [5, 9], "variabl": [5, 7, 9, 10, 12, 13, 14, 15, 16, 17, 19], "bump": [5, 15], "dive": [5, 10], "tidli": 5, "pleas": [5, 10, 13, 15], "poster": 5, "font_scal": 5, "adjust": [5, 10, 12, 13, 14, 17], "set_context": 5, "seven": [5, 14], "decent": [5, 7], "resourc": [5, 7], "contradictori": [5, 11], "site": [5, 10, 12, 13, 14, 16], "stackoverflow": [5, 15], "coder": 5, "copiou": 5, "consul": 5, "cramp": 5, "room": [5, 11], "breath": 5, "flourish": 5, "elbow": 5, "usus": 5, "happiest": 5, "meet": [5, 7, 11, 13], "grab": [5, 15], "impress": [5, 7, 9, 11, 13, 15, 16], "bin": [5, 6, 11], "leftmost": 5, "downsid": 5, "cram": [5, 12, 13], "overwhelm": [5, 11], "relatedli": 5, "120": [5, 10, 15], "clutter": 5, "width": [5, 9], "whisker": 5, "median": [5, 14, 17], "interquartil": 5, "vertic": [5, 9], "squat": 5, "horizont": [5, 9, 15], "distant": 5, "177": 5, "327": [5, 6], "aha": 5, "riddl": [5, 8, 10], "phase": 5, "wast": [5, 9, 12, 17], "chunk": [5, 6, 7, 9], "obnoxi": 5, "star": [5, 11, 15], "player": 5, "underpow": 5, "poorli": [5, 15], "streak": [5, 8], "turf": 5, "annihil": 5, "met": [5, 7, 12, 13, 15], "exclud": [5, 15], "weren": [5, 10, 12, 17], "tip": [5, 10], "disregard": [5, 16], "massacr": 5, "shame": [5, 7, 11], "pertain": [5, 16], "judgment": [5, 15], "aflsmall2": 5, "afl2smal": 5, "4291": 5, "4292": 5, "4293": 5, "4294": 5, "4295": 5, "summar": 5, "stripplot": 5, "jitter": 5, "overlap": [5, 11], "favor": 5, "insur": 5, "violinplot": 5, "densiti": [5, 13, 20], "thin": 5, "kernal": 5, "techin": 5, "underli": [5, 6, 9, 11, 16], "unknow": 5, "glanc": [5, 13], "curvi": 5, "allevi": [5, 10], "mini": 5, "spine": [5, 10, 13], "set_vis": [5, 10, 13, 14], "overlai": [5, 9, 20], "potenti": [5, 9, 12, 15], "obscur": [5, 11], "conceal": 5, "indici": 5, "prepar": [5, 10, 13], "diamond": [5, 12], "outier": 5, "boxprop": 5, "facecolor": 5, "edgecolor": [5, 13], "medianprop": 5, "whiskerprop": 5, "capprop": 5, "correl": [5, 11, 13, 14, 16, 19], "latter": [5, 12, 15], "suspicion": 5, "slope": [5, 15], "faint": 5, "transluc": 5, "df2": [5, 9, 13], "to_fram": 5, "reset_index": [5, 6, 14, 16], "inplac": [5, 14], "barplot": [5, 9], "illeg": 5, "rotat": 5, "stare": [5, 15], "insist": [5, 8, 17], "makeov": 5, "yum": 5, "brag": 5, "savefig": 5, "tweak": [5, 7, 10], "bbox_inch": 5, "tight": [5, 17], "dark": 5, "png": 5, "enjoi": 5, "waaaai": 5, "craft": 5, "introducton": 5, "configur": 5, "ala": 5, "enemi": 5, "steep": 5, "payoff": [5, 9], "hardest": [5, 10], "edit": [5, 19, 20], "harken": 5, "matlab": 5, "inspir": 5, "launceston": 5, "de": 5, "facto": 5, "demolit": 5, "kardinia": 5, "park": 5, "strung": 5, "lopsid": 5, "modest": [5, 10, 16, 17], "186": 5, "garden": [6, 7, 13], "confin": 6, "philosoph": [6, 8, 19], "laid": [6, 17], "tractor": 6, "honestli": [6, 9, 12, 13, 15, 17], "realiti": 6, "cetera": 6, "motiv": [6, 8, 10, 11, 12, 13, 15], "essenti": [6, 7, 10, 11, 12, 13, 15, 17, 19], "dump": [6, 7, 14, 16], "scratch": 6, "surfac": [6, 16], "grasp": [6, 7, 9, 14], "lightli": [6, 16], "flick": [6, 14], "nine": 6, "divd": 6, "552": 6, "624": 6, "431": 6, "925": 6, "662": 6, "634": 6, "635": 6, "memori": [6, 10, 13, 15, 17, 19], "aaaand": 6, "python": [6, 7, 11], "score_data": 6, "particp": [6, 14], "my_row": 6, "my_column": 6, "scroll": 6, "endlessli": 6, "tolist": 6, "father": 6, "tv": [6, 9], "night": 6, "transcrib": 6, "dialogu": [6, 8], "speaker": 6, "utter": 6, "saniti": 6, "upsi": 6, "daisi": 6, "tombliboo": 6, "makka": 6, "pakka": 6, "pip": [6, 12, 15], "onk": 6, "ee": 6, "oo": 6, "crosstab": [6, 12, 14, 16, 17], "col_0": 6, "satisfi": [6, 9, 10, 11, 12, 13, 14, 16, 17], "rowtot": 6, "coltot": 6, "tab": 6, "worthwhil": 6, "header": [6, 15], "hoo": 6, "boi": [6, 7, 11, 12, 16], "fascin": 6, "procedur": [6, 9, 10, 11, 14, 15, 16, 17, 19], "div": 6, "smallish": [6, 7, 15], "younger": 6, "proposit": [6, 14], "dinosaur": 6, "midpoint": 6, "endpoint": 6, "trivial": [6, 13, 15], "opinion_strength": 6, "shini": 6, "opinion_direct": 6, "tidi": [6, 12], "discret": [6, 9, 10, 11, 12], "gather": [6, 9], "coars": 6, "grain": 6, "edg": [6, 11], "categoris": 6, "deleg": 6, "667": 6, "942": 6, "boundari": [6, 11], "94": [6, 13, 15, 19], "roughli": [6, 9, 10, 17], "0th": 6, "33rd": 6, "66th": 6, "100th": 6, "qcut": 6, "q": [6, 14, 15, 19], "999": 6, "shrunk": [6, 11], "unequ": [6, 13], "carv": [6, 14], "inher": [6, 17], "drawback": [6, 7, 11, 13, 15], "advis": 6, "777298672345782376823578287355": 6, "7773": 6, "listnam": 6, "step_siz": 6, "trip": 6, "spinach": 6, "fruit": [6, 13], "strawberri": 6, "df_test": 6, "df_control": 6, "df_old": 6, "df_youngish": 6, "old_and_slow": 6, "old_and_slow_control": 6, "df_sort": 6, "df_cake": 6, "cake": [6, 7, 17], "df_cakes_flip": 6, "batch": [6, 8], "sorri": [6, 8, 12, 15, 16], "first_thre": 6, "last_two": 6, "sucker": 6, "df_join": 6, "squish": 6, "stack": [6, 14, 15], "dataram": 6, "accomplish": [6, 7], "concat": [6, 9], "df_concaten": 6, "undertak": 6, "layout": 6, "alcohol": 6, "caffein": 6, "capac": [6, 10, 13, 15], "wmc": 6, "recruit": [6, 14], "inflenc": 6, "drugs1": 6, "melt": 6, "df_long": 6, "id_var": 6, "reaction": 6, "wmc_alcohol": 6, "wmc_caffein": 6, "wmc_no": 6, "rt_alcohol": 6, "rt_caffein": 6, "rt_no": 6, "488": 6, "236": 6, "371": 6, "607": 6, "349": 6, "643": 6, "226": 6, "412": 6, "684": 6, "206": 6, "252": 6, "262": 6, "439": 6, "wide_to_long": 6, "sadli": [6, 12, 13, 15], "bid": 6, "stubnam": 6, "sub": 6, "j": [6, 7, 8, 10, 12, 14, 19], "sep": 6, "suffix": 6, "prefix": 6, "stub": 6, "intak": 6, "alchol": 6, "underscor": [6, 7], "wmc_": 6, "rt_": 6, "prof": 6, "deserv": [6, 15], "idex": 6, "multiindex": 6, "thow": 6, "recip": [6, 7, 17], "disast": 6, "pivot": 6, "swivel": 6, "track": [6, 7, 9, 14, 16], "df_wide": [6, 14], "492": 6, "230": [6, 9, 16], "464": 6, "690": 6, "259": [6, 13], "486": [6, 17], "305": 6, "686": 6, "273": [6, 15], "645": 6, "240": 6, "498": 6, "voil\u00e0": 6, "resembl": [6, 12], "convers": [6, 7, 8, 9, 11], "reassembl": 6, "df_wmc": 6, "col": 6, "df_rt": 6, "df_gender": 6, "chain": 6, "drill": 6, "flatten": [6, 7, 13, 14], "hangman": 6, "curli": [6, 9], "brace": [6, 19], "anova": [6, 13, 15], "regress": [6, 10, 12, 13, 14], "predictor": [6, 13, 14, 15, 16], "rational": [6, 15], "trademark": 6, "patent": 6, "pend": 6, "dream": 7, "vertigo": 7, "william": [7, 11, 13], "gibson": 7, "super": [7, 17], "via": [7, 12, 13, 16], "prompt": [7, 13], "albeit": [7, 12, 14], "beginn": [7, 14], "fool": 7, "chop": 7, "disciplin": [7, 9, 12], "patient": [7, 13], "forth": [7, 16], "workspac": 7, "imag": 7, "conjunct": [7, 14, 16], "reproduc": [7, 10, 14, 16], "suddenli": 7, "comb": 7, "recreat": 7, "hasn": [7, 15, 16], "reus": [7, 14, 15], "adapt": [7, 13, 15, 17, 20], "inevit": [7, 9, 14], "string": [7, 15], "log": [7, 11, 12, 15], "myrawdata": 7, "mydataanalysi": 7, "comment": [7, 13, 14, 19], "benefit": [7, 14], "mynewdatanalaysi": 7, "email": [7, 13], "colleagu": [7, 17], "1986": [7, 10, 19], "puzzl": 8, "bitter": 8, "hill": [8, 10, 19], "arthur": 8, "welleslei": [8, 10], "duke": 8, "wellington": 8, "carriag": 8, "ride": 8, "countrysid": 8, "companion": 8, "croker": [8, 10], "victori": [8, 9], "gambler": 8, "justifi": [8, 10, 11, 12, 17], "gambl": [8, 9], "paid": 8, "reckon": 8, "wcc": 8, "cwc": 8, "wwc": 8, "ccc": 8, "sequenc": [8, 9, 10], "scorecard": 8, "Their": 8, "yyi": 8, "jerk": [8, 10, 13], "dissect": [8, 12], "pitch": 8, "philosophi": [8, 11, 19], "brief": [8, 9, 11, 13, 17], "13th": 8, "justif": [8, 10, 11], "hume": [8, 17], "nelson": 8, "goodman": 8, "divers": 8, "lewi": 8, "carrol": 8, "lunch": [8, 10, 15], "theorem": [8, 12, 13, 15], "escap": [8, 11, 16], "dialog": 8, "implicit": [8, 15], "welles": [8, 10], "revis": [8, 17, 19], "factual": 8, "inconsist": [8, 11, 17], "hallmark": 8, "sherlock": 8, "holm": [8, 15, 19], "inabl": 8, "ultim": [8, 11, 17, 20], "underpin": [8, 9, 11, 14, 16, 17], "bartlebi": 8, "344": 8, "god": [9, 11, 12, 15], "twilight": 9, "lock": 9, "stamp": 9, "herald": 9, "oct": 9, "tough": 9, "premier": 9, "poll": [9, 10], "unpopular": 9, "labor": 9, "administr": 9, "vote": [9, 10, 12], "cent": 9, "unremark": [9, 12], "entail": 9, "nsw": 9, "voter": [9, 10, 12], "alp": 9, "feder": 9, "elect": 9, "elector": 9, "commiss": 9, "610": 9, "795": [9, 13, 19], "609": 9, "98": [9, 10, 15], "4610795": 9, "005": [9, 14, 15, 17], "4610025": 9, "83": [9, 10, 15], "everybodi": 9, "enterpris": 9, "lion": 9, "doctrin": 9, "branch": 9, "coin": [9, 11, 12], "roll": 9, "dice": 9, "card": [9, 11], "shuffl": [9, 12, 16], "deck": [9, 12], "lotteri": 9, "probabilist": [9, 10], "commission": 9, "spous": 9, "rig": [9, 10, 13, 17], "neq": [9, 11, 12, 13, 15, 16], "consensu": 9, "walk": [9, 11, 12], "soccer": 9, "arduino": 9, "arsen": 9, "milan": 9, "ideolog": [9, 11, 17], "subscrib": 9, "talli": 9, "n_h": 9, "number_of_flip": 9, "number_of_head": 9, "00": [7, 9, 12, 15], "69": [9, 12, 13, 19], "53": [9, 11, 13, 14, 15], "dampen": 9, "nutshel": 9, "infin": [9, 10], "rightarrow": [9, 10], "infti": [9, 10], "converg": 9, "patienc": 9, "simul": [9, 10, 12, 15, 17], "drew": [9, 10, 15], "fluke": [9, 13], "frequentist_prob": 9, "def": [7, 9, 10, 15], "coin_flip": 9, "uniform": 9, "arang": [9, 11, 13, 15], "cumsum": 9, "proportion_head": 9, "run1": 9, "run2": 9, "run3": 9, "run4": 9, "frequentist_probability_fig": 9, "unfold": 9, "undesir": [9, 12], "pocket": 9, "land": 9, "wear": 9, "meteorologist": 9, "rain": [9, 17], "novemb": 9, "2048": 9, "forbid": [9, 17], "tomorrow": [9, 11], "subjectivist": 9, "steadili": 9, "traction": 9, "decad": [9, 11], "flavour": 9, "ration": 9, "agent": 9, "formalis": [9, 10, 13, 16], "disadvantag": [9, 10, 11, 15], "alien": 9, "uncomfort": [9, 14], "obei": 9, "pragmatist": 9, "relax": 9, "tower": [9, 11], "20th": [9, 11, 14, 17], "vehement": 9, "oppon": 9, "impenetr": 9, "jungl": 9, "arrest": 9, "1922": [9, 11, 12, 19], "paul": 9, "meehl": [9, 19], "potent": 9, "steril": 9, "intellectu": [9, 12], "rake": 9, "merri": 9, "ravish": 9, "maiden": 9, "viabl": 9, "offspr": 9, "1967": [9, 19], "devoid": 9, "entertain": [9, 13], "territori": 9, "promis": [9, 10, 15, 17], "orthodox": [9, 11], "notwithstand": [9, 17], "andrei": 9, "kolmogorov": [9, 13], "pant": 9, "disturb": 9, "jean": 9, "tracksuit": 9, "sadder": 9, "mister": 9, "grant": [9, 11], "wardrob": 9, "sad": [9, 12], "trite": 9, "grei": 9, "eventnam": 9, "wrap": [9, 12, 13, 15, 16, 17], "cup": [7, 9], "cap": 9, "chi": [9, 11, 13, 14, 17, 19, 20], "skull": 9, "proce": [9, 15], "167": 9, "theta": [9, 11], "sim": [9, 11, 12, 13, 14], "2022036": 9, "binom": [9, 11], "pmf": 9, "pixel": 9, "exp": 9, "exponenti": 9, "k": [9, 11, 12, 13, 14, 15, 19], "20220358121717247": 9, "repeatedli": [9, 17], "n1": [9, 13], "n2": [9, 13, 16], "r1": [9, 16], "r2": [9, 15], "101": [7, 9, 10], "p1": [9, 15, 16], "p2": [9, 15, 16], "df1": 9, "set_xtick": 9, "honour": 9, "gaussian": 9, "quietli": 9, "smooth": [9, 15], "weather": 9, "pleasant": 9, "spring": 9, "varianc": [9, 10, 12, 13, 19], "labelleft": 9, "labeltop": 9, "labelright": 9, "labelbottom": [9, 10, 15], "linestyl": [9, 10, 13, 15], "normals2": 9, "widen": 9, "shrink": 9, "twini": 9, "irrespect": [9, 10], "sdnorm": 9, "sdnorm2": 9, "x_fill1": 9, "001": [9, 11, 12, 13, 14, 15, 16], "x_fill2": 9, "y_fill1": 9, "y_fill2": 9, "fill_between": [9, 12, 13], "alpha": [9, 10, 11, 12, 13, 14, 15, 16], "admittedli": [7, 9, 10, 12, 15], "distort": [9, 10, 15, 16], "portabl": 9, "989422804014327": 9, "thermomet": 9, "dart": 9, "board": 9, "99998": 9, "9998": [9, 15], "liar": 9, "numref": 9, "heavier": [9, 13], "tdist": 9, "degfre": [9, 13], "chi2": [9, 12, 17], "sane": 9, "fdist": 9, "degfree1": 9, "degfree2": 9, "dist": [9, 13, 14], "37495055": [], "94156658": [], "96302133": [], "20757735": [], "20647971": [], "61603773": [], "49750524": [], "72068372": [], "70983379": [], "20401518": [], "freedom": [9, 10, 11, 12, 13, 14, 15, 17], "exploit": 9, "normal_a": 9, "normal_b": 9, "normal_c": 9, "chi_square_data": 9, "scaled_chi_square_data": 9, "t_3": 9, "normal_d": 9, "chi_square_3": 9, "chisquar": [9, 12], "chi_square_20": 9, "scaled_chi_square_3": 9, "scaled_chi_square_20": 9, "f_3_20": 9, "unsightli": 9, "df_1": 9, "df_2": [9, 14, 15], "versu": [9, 12, 13, 14], "coverag": 9, "exhaust": [9, 10, 15], "bookshelf": 9, "hurt": [9, 10, 15], "skim": [9, 14, 16], "academ": [9, 10, 12, 17, 19], "redescrib": [9, 13], "increasingli": [9, 10, 11], "controversi": 9, "passeng": 9, "injur": 9, "crash": 9, "calculu": 9, "int_a": 9, "dx": [], "larri": 9, "moe": 9, "huei": 9, "dewei": 9, "louie": 9, "boringli": 9, "highlight": [10, 14, 17], "concis": 10, "witter": 10, "prelud": 10, "phone": 10, "finit": [7, 10], "incomplet": 10, "ring": 10, "terrestri": 10, "destin": 10, "wellselei": 10, "subset": [10, 15, 16], "bag": 10, "chip": 10, "shake": 10, "shook": 10, "member": [10, 12, 14, 16], "br": 10, "dismiss": 10, "miracl": 10, "narrowest": 10, "stratifi": 10, "subpopul": 10, "strata": 10, "effici": 10, "schizophrenia": 10, "schizophren": 10, "forgiv": [7, 10], "simplif": [10, 11, 12], "oversampl": 10, "snowbal": 10, "techniqu": [10, 11, 14], "contact": [10, 11], "tran": 10, "intrus": 10, "network": 10, "consent": 10, "relianc": [10, 17], "restrict": [10, 11, 13, 15], "srs1": [], "unproblemat": 10, "mondai": [7, 10, 14], "wealthi": 10, "industrialis": 10, "exclus": [10, 11, 17], "grown": 10, "coffer": 10, "overflow": [10, 12, 15], "gold": 10, "courtesi": 10, "blah": 10, "border": 10, "critiqu": 10, "rehash": 10, "truism": 10, "rambl": 10, "thorni": 10, "tendenc": [10, 12], "rant": 10, "ecologist": 10, "realm": 10, "iq": [10, 15, 16], "operation": [10, 11], "grid": [10, 15], "ax0": [10, 13], "10000": [10, 11], "transax": [10, 15, 16], "fontsiz": 10, "fontweight": 10, "va": 10, "106": 10, "107": [10, 19], "72": [10, 13, 14, 16], "encourag": [10, 13, 20], "poulat": 10, "iq_10": 10, "iq_100": 10, "iq_10000": 10, "104": [7, 10], "43867269618876": [], "06550343462831": [], "102": [7, 10], "68503725167218": [], "973649420035605": [], "91296994766488": [], "215898680015181": [], "jacob": 10, "bernoulli": 10, "founder": [10, 17], "1713": 10, "stigler": [10, 19], "men": 10, "himself": [10, 13], "wander": 10, "passag": [10, 17], "condescend": 10, "rewritten": [12, 14], "proof": [10, 11, 14], "somehow": [10, 11], "maynard": [10, 19], "keyn": [10, 19], "famous": [10, 11], "tempestu": 10, "storm": 10, "ocean": 10, "1923": [10, 19], "abandon": 10, "astyp": 10, "iq_1": 10, "93": [10, 12, 13, 15], "replic": [10, 11], "iq_2": 10, "105": [7, 10, 17], "112": 15, "86": [13, 15], "118": 10, "125": [10, 13, 15, 16], "122": [10, 16], "121": [10, 15], "109": [10, 12], "138": 15, "amass": 10, "iq_samp_dist": 10, "sample_mean": [10, 13], "119": [10, 15], "iq_max": 10, "highest": [10, 17], "140": 10, "sample_max": 10, "inaccur": 10, "recalcul": 10, "clm": 10, "sem": [10, 13], "subax": 10, "plotsampl": 10, "ramp": 10, "beta": [10, 11, 15, 16], "triangular": 10, "50000": 10, "sharex": 10, "devat": 10, "poison": [10, 13], "piri": 10, "south": 10, "industri": 10, "town": 10, "smelter": 10, "whyalla": 10, "steel": 10, "refineri": 10, "local": [10, 15], "gunpoint": 10, "shall": [10, 13, 14, 16, 17], "intut": 10, "cromul": 10, "bare": [10, 11, 13, 14, 15], "sample_sd": 10, "dash": [10, 15, 17], "axvlin": [10, 13], "opt": [12, 13, 14, 16], "miniconda3": [12, 13, 14, 16], "env": [12, 13, 14, 16], "pythonbook3": [12, 13, 14, 16], "lib": [12, 13, 14, 16], "python3": [12, 13, 14, 16], "922": 15, "xbar": [], "920": [], "issubclass": [], "921": [], "_decimal_sqrt_of_frac": [], "mss": [], "denomin": [13, 16], "_float_sqrt_of_frac": [], "374": [], "372": [], "373": [], "sketch": [], "bug": 12, "msg407078": [], "bit_length": [], "_sqrt_bit_width": [], "_integer_sqrt_of_frac_rto": [], "rnorm": 10, "sampdistsd": 10, "estimatorbia": 10, "ns": 10, "averagesamplesd": 10, "averagesamplemean": 10, "sample_mean_1": 10, "samplemean": 10, "samplesd": 10, "dashdot": 10, "ylim": [10, 13], "axhlin": [10, 13, 14, 15], "imprecis": [10, 14], "115": [10, 15, 19], "certainti": [10, 11, 17], "ppf": [10, 11, 12], "5th": [10, 19], "025": [10, 13, 15, 16], "975": [10, 11, 15, 16], "9599639845400545": 10, "959963984540054": 10, "leq": [10, 11], "algebra": [10, 14, 15], "rewrit": [10, 12, 16, 17], "pm": 10, "15th": 10, "85th": 10, "0364333894937898": 10, "960201263621358": 10, "9602012636213575": 10, "262157162740992": 10, "2621571627409915": [], "uncertain": 10, "probabail": 10, "bayesian": [10, 13, 14, 15], "frequentist": [10, 17], "cirep": 10, "rng": 10, "default_rng": 10, "n_experi": 10, "increment": 10, "simdata": 10, "too_high": 10, "too_low": 10, "no_mean": 10, "pointplot": [10, 13, 14, 16], "130": 10, "vline": 10, "ymin": 10, "ymax": 10, "pedant": [10, 12], "credibl": 10, "drastic": 10, "tconfint_mean": 10, "ci_1": 10, "api": [10, 14, 15, 16], "sm": [10, 14, 15, 16], "ci_2": 10, "descrstatsw": 10, "514149929408497": 10, "485850070591503": 10, "shelf": 10, "load_dataset": 10, "total_bil": 10, "sex": [10, 19], "sun": [10, 11], "dinner": 10, "datapoint": 10, "x_estim": 10, "extraordinarili": 10, "sloppi": 10, "pollut": 10, "deficit": 10, "illusori": [10, 13], "implaus": [10, 11, 16], "resent": 10, "weaker": [10, 11], "ore": 10, "unbiased": 10, "shirt": 10, "amstat": 10, "jse": 10, "v10n3": 10, "friedman": 10, "harmon": 11, "ludwig": 11, "wittgenstein": 11, "dogmat": 11, "dogma": [11, 17], "heresi": 11, "surround": [7, 11], "succumb": 11, "promot": 11, "professor": 11, "ensconc": 11, "ivori": 11, "happili": [11, 15], "protect": [11, 17], "tenur": 11, "indulg": 11, "thoroughli": 11, "unproduct": 11, "extrasensori": 11, "percept": 11, "esp": 11, "gloriou": 11, "clairvoy": 11, "adjac": 11, "upward": [11, 13], "portrai": 11, "substant": [11, 15], "testabl": 11, "music": [11, 13], "speed": [7, 11], "ontolog": 11, "battlefield": 11, "tautolog": 11, "club": [11, 12], "unfalsifi": 11, "domain": [11, 13], "wall": [11, 16], "hypothei": 11, "wacki": 11, "badli": [11, 15], "h_0": [11, 12, 13, 14, 15, 16, 17], "neglect": 11, "h_1": [11, 12, 13, 14, 15, 16, 17], "defend": [11, 17], "prosecutor": 11, "presumpt": 11, "innoc": 11, "maximis": 11, "yield": 11, "convict": [11, 15], "lawyer": 11, "unlucki": 11, "1024": [11, 14], "retain": [11, 12, 13, 15, 17], "h0": 11, "ii": [11, 13, 14, 15], "wrongfulli": 11, "jurist": 11, "blackston": 11, "guilti": 11, "punish": 11, "central": [11, 12, 13, 14, 15], "retent": 11, "secondari": 11, "conced": 11, "binomi": [11, 12], "xlim": 11, "evas": 11, "annot": [11, 12, 14], "xytext": [11, 12, 14], "arrowprop": [11, 12, 14], "dict": [11, 12, 14, 15], "arrowstyl": [11, 12, 14], "600": 11, "580": [11, 15], "patch": 11, "get_x": 11, "set_color": 11, "lightgrei": 11, "geq": 11, "occult": 11, "divin": 11, "privat": 11, "jargon": [11, 13, 17], "contriv": 11, "practition": [11, 17], "ashlei": 11, "cc": [11, 20], "onesid": 11, "jerzi": 11, "cleaner": 11, "021": 11, "intoler": 11, "soften": 11, "trillion": 11, "mistaken": 11, "bluntli": 11, "chisqreport": 11, "unsurpris": [11, 15, 16], "framework": [11, 15, 16, 17], "tension": 11, "062": 11, "patholog": [11, 13], "051": [11, 13], "049": [11, 13, 15], "reput": 11, "amazingli": 11, "attest": 11, "sig": 11, "06": [11, 13], "spss": 11, "0000000001": 11, "suppress": 11, "tier": 11, "whichev": [7, 11, 14, 15], "implement": [11, 12, 14, 15], "binom_test": 11, "6m": [10, 11], "mwt0c30539b1zrk5vf14dpr44pd98r": [10, 11], "ipykernel_11158": [], "1922679674": 11, "deprecationwarn": [10, 11], "deprec": [10, 11], "binomtest": 11, "02097873567785172": 11, "ters": 11, "emphasis": [11, 13], "unabl": [11, 17], "alternative2": 11, "entireti": 11, "powerfunct": 11, "sharpli": [11, 13], "prob": [11, 15], "cdf": [11, 13, 14], "prob_low": 11, "probablil": 11, "alert": [11, 15], "inappropri": 11, "mice": 11, "tiger": 11, "abroad": 11, "georg": 11, "1976": 11, "cohen": [11, 14, 19], "1988": [11, 13, 19], "elli": [11, 19], "theta_0": 11, "successfulli": 11, "psychic": 11, "proclaim": 11, "crisi": 11, "magnifi": 11, "quiet": 11, "darken": 11, "distract": 11, "strengthen": [11, 17], "boost": [11, 15], "powerfunctionsampl": 11, "qbinom": 11, "critlo": 11, "crithi": 11, "figwidth": 11, "600px": 11, "zig": 11, "zag": 11, "contempl": 11, "feasibl": 11, "partli": [11, 12, 17], "wife": 11, "bureaucrat": 11, "nhst": 11, "necess": [11, 15], "promin": 11, "hate": [11, 12, 14, 17], "histor": 11, "disput": 11, "mash": 11, "lehmann": [11, 19], "mishmash": 11, "exrem": 11, "emphat": 11, "unrepent": 11, "thoughtless": [11, 15], "rush": [11, 14], "gelman": [11, 19], "stern": [11, 19], "2006": [11, 13, 19], "significantli": [11, 13, 14, 15], "54": [7, 11, 13, 19], "borderlin": [11, 17], "wari": 11, "ubiquit": [11, 17], "cursori": 11, "recap": 11, "soft": 11, "fond": 11, "tractatu": 11, "logico": 11, "philosphicu": 11, "emerg": [11, 12], "hybrid": 11, "apolog": 11, "rigor": 11, "intellect": 11, "adversari": 11, "uk": [11, 19], "french": 11, "inquisitori": 11, "conflat": [11, 12, 13], "karl": [11, 12], "popper": 11, "falsificationist": 11, "falsification": 11, "fine": [11, 12, 14, 15], "proviso": 11, "caught": 11, "057": [11, 14], "000000000000000000000000136": 11, "1900": [12, 19], "difficulti": [12, 14, 17], "imaginari": 12, "spade": 12, "choice_1": 12, "choice_2": 12, "subj1": 12, "subj2": 12, "subj3": 12, "subj4": 12, "subj5": 12, "195": 12, "subj196": 12, "196": 12, "subj197": 12, "197": 12, "subj198": 12, "198": 12, "subj199": 12, "199": 12, "subj200": 12, "o_2": 12, "heartsuit": 12, "o_1": 12, "diamondsuit": 12, "spadesuit": 12, "o_3": 12, "clubsuit": 12, "o_4": 12, "o_i": 12, "p_j": [12, 14], "p_1": 12, "p_2": 12, "p_3": 12, "p_4": 12, "panad": 12, "float64": 12, "e_i": [12, 15], "p_i": 12, "225": 12, "convention": [12, 13], "chase": [12, 14, 15], "manychi": 12, "y5": 12, "region": [12, 13, 14], "95th": 12, "goftest": 12, "critical_valu": 12, "hmm": 12, "f_ob": 12, "f_exp": 12, "power_divergenceresult": 12, "pvalu": [12, 13, 14], "0377418520240214": 12, "gosh": 12, "darn": 12, "readi": [12, 15], "x2": [12, 13, 14], "038": 12, "nullprob": 12, "741666666666667": 12, "192": 12, "preced": 12, "cry": 12, "writer": 12, "intim": 12, "polit": [12, 13, 17], "intro": [12, 13, 15, 20], "dens": 12, "overrid": 12, "thesi": 12, "satan": 12, "delight": 12, "scriptur": 12, "rohlf": [12, 19], "1994": [12, 14, 19], "034": 12, "unclear": 12, "collabor": 12, "modifi": [7, 12, 14, 15, 16], "guardbot1": 12, "halt": 12, "guardbot2": 12, "leela": 12, "fry": 12, "uh": [12, 15], "eh": 12, "puppi": [12, 17], "flower": [7, 12, 17], "sweeti": 12, "futurama": 12, "bot": 12, "documentari": 12, "quaint": 12, "nativ": [12, 13], "chapek": 12, "visitor": 12, "civil": 12, "chapek9": [12, 17], "180": [12, 17], "overwhelmingli": 12, "tabul": [12, 13, 16, 17], "freqtabl": 12, "teeni": 12, "o_": 12, "c_": 12, "ij": 12, "r_i": 12, "r_1": 12, "c_j": 12, "c_1": 12, "p_": 12, "e_": 12, "_i": [12, 15], "conting": [12, 19], "rcl": [12, 13, 14, 15], "rc": [12, 16], "bundl": 12, "frill": 12, "chi2_conting": [12, 17], "crunch": 12, "dof": [12, 13, 14, 17], "ex": [12, 17], "721571792595633": 12, "004697213134214071": 12, "31666667": 12, "68333333": 12, "21666667": 12, "78333333": 12, "46666667": 12, "53333333": 12, "chooser": 12, "easis": 12, "wherev": 12, "instal": 12, "conda": 12, "webpag": 12, "plug": [12, 14, 15, 16], "pg": [12, 14, 15, 16], "chi2_independ": 12, "_lib": 12, "_util": 12, "runtimewarn": 12, "_ncx2_sf": 12, "cond": [12, 15], "temp": 12, "316667": 12, "216667": 12, "466667": 12, "683333": 12, "783333": 12, "533333": [12, 13], "observed_manu": 12, "observed_pingouin": 12, "lambda": [12, 15], "pval": [12, 14, 15, 16], "cramer": 12, "721572": 12, "004697": 12, "244058": 12, "842961": 12, "cressi": 12, "666667": 12, "757745": 12, "004613": 12, "244469": 12, "844244": 12, "likelihood": [12, 15], "922195": 12, "004249": 12, "246331": 12, "849966": 12, "freeman": [12, 19], "tukei": [12, 15], "131562": 12, "003827": 12, "248681": 12, "856988": 12, "mod": [12, 15], "421716": 12, "003310": 12, "251901": 12, "866249": 12, "neyman": 12, "280435": 12, "002154": 12, "261198": 12, "890668": 12, "wow": 12, "pinguoin": [12, 13, 15], "dirti": [12, 15], "bow": 12, "classifi": [12, 14, 16], "reactiv": 12, "worthless": 12, "cartoon": 12, "yate": [12, 19], "1934": [12, 19], "redefin": [12, 13], "hack": 12, "commonplac": [12, 13, 16], "phi": 12, "unsatisfactori": 12, "propos": [12, 15], "cram\u00e9r": [12, 19], "cochran": [12, 19], "1954": [12, 19], "larntz": [12, 19], "1978": [12, 19], "hospit": 12, "matern": 12, "ward": 12, "girl": [12, 16], "infeas": 12, "emot": 12, "statu": 12, "witchcraft": [12, 13], "whom": 12, "stake": 12, "fire": 12, "awfulli": [12, 16], "salem": 12, "userwarn": [12, 16], "309402": 12, "068885": 12, "454794": 12, "444097": 12, "265804": 12, "070738": 12, "451788": 12, "439356": 12, "321858": 12, "068365": 12, "455649": 12, "445448": 12, "507069": 12, "061107": 12, "468179": 12, "465301": 12, "850051": 12, "049744": 12, "490539": 12, "500918": 12, "276692": 12, "021613": 12, "574276": 12, "632005": 12, "r_2": 12, "c_2": 12, "hypergeometr": 12, "daunt": 12, "fisher_exact": 12, "freq_tabl": 12, "oddsratio": 12, "03571428571428571": 12, "036": [12, 13], "hire": 12, "parti": [12, 14], "agpp": 12, "advertis": 12, "160": 12, "lend": 12, "eek": 12, "1947": [12, 13, 19], "nonstandard": 12, "p_a": 12, "p_b": 12, "p_c": 12, "p_d": 12, "diagon": [12, 13, 15], "revert": 12, "response_befor": 12, "response_aft": 12, "subj": 12, "chi2_mcnemar": 12, "approx": 12, "033333": 12, "000523": 12, "000325": 12, "agresti": [12, 19], "1996": [12, 14, 19], "misunderstood": 12, "conflict": [12, 19], "garbag": 12, "lrt": 12, "hogg": [12, 19], "mckean": [12, 19], "reserv": 12, "draft": 12, "collaps": 12, "irreproduc": 12, "medic": 13, "blood": 13, "agricultur": 13, "phosphoru": 13, "plant": 13, "Its": 13, "stone": 13, "zeppo": 13, "curios": 13, "devis": 13, "set_frame_on": [13, 14], "get_yaxi": [13, 14], "get_xaxi": [13, 14], "hline": 13, "xmin": 13, "xmax": 13, "mu_0": 13, "sigma_0": 13, "ztesthyp": 13, "addition": [7, 13], "diagnost": [13, 15], "z_": [13, 14], "iteself": 13, "ztest1": 13, "ztest2": 13, "crit": 13, "p_lower": 13, "p_upper": 13, "hatch": 13, "ztest": 13, "644854": 13, "281552": 13, "959964": 13, "575829": 13, "326348": 13, "290527": 13, "090232": 13, "unnecessari": [13, 15], "sd_true": 13, "mu_nul": 13, "sem_tru": 13, "1242645786248002": 13, "z_score": 13, "259605535157681": 13, "normaldist": 13, "lower_area": 13, "011922871882469877": 13, "cumul": 13, "opaqu": 13, "becauw": 13, "upper_area": 13, "p_valu": 13, "023845743764939753": 13, "experimet": 13, "dreari": 13, "kingdom": 13, "unicorn": 13, "fairi": 13, "leprechaun": 13, "bereft": 13, "520614752375915": [], "ttesthyp_onesampl": 13, "axessubplot": [], "1908": [13, 19], "seali": 13, "gosset": 13, "student1908": [], "chemist": 13, "guin": 13, "breweri": 13, "box1987": [], "dim": 13, "employe": 13, "secret": 13, "pseudonym": 13, "accommod": [13, 17], "ttestdist": 13, "y_norm": 13, "y_t": 13, "se_est": 13, "flavor": [13, 20], "ttest_1samp": 13, "popmean": 13, "25471286700693": 13, "03614521878144544": 13, "overjoi": 13, "shorthand": [13, 16], "kinder": [13, 14], "confidence_level": 13, "degrees_freedom": 13, "sample_standard_error": 13, "confidence_interv": 13, "84421513791415": 13, "75578486208585": 13, "whew": 13, "compress": [13, 15], "ttest": [13, 14], "ci95": [13, 14, 15], "bf10": [13, 14, 15], "254713": 13, "036145": 13, "504169": 13, "571446": 13, "bay": [13, 14, 19], "harpo": 13, "tutor": 13, "anastasia": 13, "bernadett": 13, "n_1": [13, 14], "n_2": [13, 14], "harpo_summari": 13, "998942": 13, "055556": 13, "774918": 13, "harpohist": [], "ttestci": 13, "alloc": 13, "mu_1": 13, "mu_2": 13, "_1": [13, 14, 15], "_2": [13, 14, 15], "mu1": [13, 14], "sigma1": 13, "mu2": [13, 14], "x1": [13, 14], "line2d": [], "0x16225f820": [], "sigma_1": 13, "sigma_2": 13, "weigh": [13, 15], "w_1": 13, "w_2": 13, "2_p": [13, 16], "sigma_p": 13, "ugli": [13, 15, 16], "ik": [13, 14, 15], "_k": [13, 14, 15], "_p": [13, 16], "ttest_ind": 13, "unifi": 13, "sent": 13, "harpo_wid": 13, "duck": 13, "115432": 13, "042529": 13, "739561": 13, "755": 13, "53577": 13, "foolish": 13, "cleanli": 13, "testsm": 13, "overgeneralis": 13, "ttestoneassumpt": 13, "wilcox": 13, "homoscedast": [13, 14, 16], "leven": [13, 19], "crop": 13, "ttesthyp2": [], "ttesthyp": [], "diagnosi": [13, 19], "sigma2": 13, "0x162389810": [], "anasatasia": 13, "034187": 13, "024806": 13, "05361": 13, "556": 13, "054": [13, 16], "panic": 13, "sky": 13, "chico": 13, "challeng": [13, 14], "grade_test1": 13, "grade_test2": 13, "student1": 13, "student2": 13, "student3": 13, "student4": 13, "student5": 13, "980000": 13, "385000": 13, "616137": 13, "405612": 13, "900000": 13, "600000": 13, "700000": 13, "050000": 13, "pairedta": 13, "get_xlim": 13, "get_ylim": 13, "ls": 13, "set_text": 13, "9508686092602991": 13, "8591313907397005": 13, "i1": [13, 15], "i2": [13, 15], "d_": 13, "mu_d": 13, "sigma_d": 13, "475436": 13, "447952": 13, "5991": 13, "577": 13, "999984": 13, "215765": 13, "150446": 13, "0000032": 13, "018073": 13, "inf": 13, "701407": 13, "interestd": 13, "equal_var": [13, 14, 16], "ttest_indresult": 13, "11543239": 13, "04252949": 13, "02126474": 13, "97873526": 13, "substract": [13, 14], "subract": 13, "ttest_rel": 13, "ttest_relresult": [], "475436088339379": 13, "660335028063474e": 13, "9999983396649719": 13, "cohen1988": [], "wrinkl": 13, "defenc": 13, "nitpick": 13, "mcgrath2006": [], "accuraci": [13, 14], "delta": [13, 15, 16], "blindli": 13, "mu_o": 13, "5041691240370938": [], "hedg": [13, 14, 19], "hedges1981": [], "glass": [13, 19], "purer": 13, "hedges1985": [], "tutor1": 13, "tutor2": 13, "u1": 13, "u2": 13, "s1": [], "s2": [], "7395614040382655": [], "prime": [13, 14, 15, 17], "displaystyl": [13, 14, 15, 17], "7486295728919304": [], "_d": 13, "mean_diff": 13, "sd_diff": 13, "4855669223382983": [], "2213698410715347": [], "clt": [], "skew": [13, 15], "trigger": [13, 17], "probplot": 13, "seed": 13, "normal_data": 13, "hist": [13, 15], "qq_fig": 13, "departur": [13, 15], "qqskew": [], "qqheavi": [], "kurtosi": [13, 15], "skewed_data": 13, "qqskew_fig": 13, "heavy_tailed_data": 13, "qqheavy_fig": 13, "shapiro1965": [], "a_i": 13, "mumbl": [13, 15], "ars": 13, "swdist": [], "clump": 13, "shapiroresult": [13, 14], "9898834228515625": [], "6551706790924072": [], "nonparametr": [13, 14], "mann": 13, "whitnei": 13, "rdata": 13, "awesome2": 13, "score_a": 13, "score_b": 13, "datum": 13, "037109375": 13, "studentttest": [], "earth": 13, "bought": 13, "exot": 13, "nutrient": 13, "european": 13, "sheer": 13, "arrog": 13, "weaken": [13, 17], "nastier": 13, "delici": 13, "smoothi": 13, "mcnemar": [13, 16, 19], "groucho": 13, "smirnov": 13, "kolomogorov": 13, "ow": 14, "tenuou": 14, "remaind": [7, 14], "antidepress": 14, "joyzepam": [14, 16], "undergo": 14, "cbt": [14, 16], "doubli": 14, "clintrial": [14, 16], "clin": 14, "groupbi": [14, 16], "agg": 14, "716667": 14, "483333": 14, "450000": 14, "moodgain": [], "mu_p": [14, 16], "induc": [14, 16], "mu_a": [14, 16], "mu_j": [14, 16], "pessimist": [14, 15], "n_k": 14, "fake": 14, "y_": [14, 16], "cosmet": 14, "y_p": [14, 16], "arbitrarili": [14, 17], "uncool": 14, "num": [7, 14], "ann": 14, "egg": [7, 14], "whoever": 14, "ss": [14, 15, 16], "tot": [14, 15], "_w": 14, "grand": [14, 16], "_b": [14, 16], "yai": 14, "mu3": 14, "x3": 14, "anovavar_fig": 14, "arrow": 14, "workabl": 14, "fiddl": 14, "lcl": 14, "ms": [14, 15, 16], "epsilon_": [14, 15, 16], "residu": 14, "leftov": [14, 16], "mu_k": 14, "epsilon": 15, "ch": [], "hai": [14, 19], "1899": 14, "0025": 14, "0225": 14, "1225": 14, "0136": 14, "1003": 14, "2614": 14, "gp_mean": 14, "grouped_mean": 14, "group_mean": 14, "dev_from_group_mean": 14, "squared_dev": 14, "ipykernel_11188": [], "145942847": [], "futurewarn": 10, "numeric_onli": 14, "dataframegroupbi": [], "shut": 14, "sight": 14, "beer": 14, "fridg": 14, "telli": 14, "nest": [14, 15], "0144": 14, "2704": 14, "0064": 14, "0484": 14, "0324": 14, "2025": 14, "1444": 14, "2304": 14, "miniscul": 14, "ssw": 14, "3918000000000001": 14, "grand_mean": [14, 16], "dev_from_grandmean": 14, "xtab": 14, "group_siz": 14, "weighted_squared_dev": 14, "3421671601": [], "163333": 14, "026678": 14, "160067": 14, "603333": 14, "364011": 14, "184067": 14, "430000": 14, "184900": 14, "109400": 14, "ssb": 14, "453533333333334": 14, "slight": [14, 15], "painless": 14, "lclcl": 14, "lclclcl": 14, "woohooo": 14, "lookup": 14, "672726890401883e": 14, "0000867": 14, "f_onewai": 14, "lacon": 14, "anth": 14, "instantli": 14, "undersand": 14, "unsurprisingli": 14, "ol": [14, 15, 16], "aov_tabl": 14, "anova_lm": [14, 15, 16], "typ": [14, 16], "sum_sq": [14, 16], "pr": [14, 15, 16], "gt": [14, 15, 16], "453333": 14, "610778": 14, "000086": 14, "391667": [14, 16], "celebr": 14, "lm": 14, "implic": [14, 15], "bask": 14, "glori": 14, "unc": [14, 16], "np2": [14, 16], "726667": 14, "712762": 14, "092778": 14, "eta": [14, 16], "sstot": 14, "eta_squar": 14, "7127545404512933": 14, "competitor": 14, "fish": [14, 15], "expedit": [14, 15], "guidanc": 14, "latin": 14, "shaffer": [14, 19], "1995": [14, 17, 19], "simultan": 14, "hsu": [14, 19], "dunn": [14, 19], "1961": [14, 17, 19], "note7": [], "prime_j": 14, "pp": 14, "1979": [14, 15, 19], "sequenti": [14, 17, 19], "unchang": [14, 15, 16], "tripl": [14, 16], "prime_": 14, "020": [14, 15], "019": [14, 16], "022": 14, "044": [14, 16], "outperform": [14, 15], "elabor": [14, 17], "padjust": [14, 15], "pairwise_ttest": [], "pairwise_test": 14, "_continuous_distn": [], "6832": [], "_nct_sf": [], "clip": [], "_boost": [], "nc": [], "6826": [], "_nct_cdf": [], "parametr": 14, "206222": 14, "001811": 14, "003621": 14, "947": 14, "241659": 14, "354183": 14, "205486": 14, "814": 14, "721696": 14, "168708": 14, "000030": 14, "000091": 14, "475": 14, "231": 14, "820482": 14, "unalt": 14, "lrcl": 14, "qq": [14, 15, 16], "shapiro": [14, 15, 16, 19], "wilk": [14, 15, 16, 19], "sigma_k": 14, "deadlin": 14, "skin": 14, "1960": [14, 19], "forsyth": [14, 19], "1974": [14, 15, 19], "nope": [14, 17], "drink": 14, "f_": [14, 16], "welch": [14, 19], "1951": [14, 19], "welch_anova": 14, "ddof1": 14, "ddof2": 14, "11th": 14, "april": 14, "2022": [14, 15], "resid": [14, 15, 16], "edifi": 14, "verg": 14, "qqplot": [14, 15, 16], "96019": 14, "605309": 14, "9601902365684509": 14, "6053088307380676": 14, "particuar": 14, "squint": [14, 15], "distringut": 14, "wilcoxon": 14, "1952": [14, 19], "rss": [14, 16], "sum_k": 14, "sum_i": [14, 15], "needlessli": 14, "jiggeri": 14, "pokeri": 14, "lord": 14, "dilig": [14, 17], "f_j": 14, "rename_axi": 14, "unique_valu": 14, "f_3": 14, "tcf": 14, "sum_j": 14, "reliev": 14, "existenti": 14, "horror": 14, "076": [14, 15], "002": 14, "708": 14, "096": [14, 16], "clinical_wid": [], "no_therapi": 14, "307": 14, "616": 14, "732": 14, "curious": 14, "3068": 14, "sahai": [14, 19], "ageel": [14, 19], "2000": [14, 19], "anova2": [], "alpha_k": 14, "stickler": 14, "discoveri": 14, "bonferrroni": 14, "bonf": [14, 15], "fancier": 15, "sleepycorrelation_fig": [], "sleepycorrel": 15, "secretli": 15, "sleep_regressions_1": 15, "smf": 15, "intercept": [15, 16], "param": 15, "mx": 15, "decai": 15, "b_1": [15, 16], "b_0": [15, 16], "frilli": 15, "epsilon_i": 15, "sleep_regressions_2": 15, "_0": 15, "optim": 15, "hook": 15, "shortcut": 15, "lift": 15, "curve_fit": 15, "xdata": 15, "ydata": 15, "stolen": 15, "shamelessli": [15, 17], "phillip": 15, "53779773": 15, "func": 15, "initialparamet": 15, "fittedparamet": 15, "pcov": 15, "modelpredict": 15, "xmodel": 15, "ymodel": 15, "linexdata": 15, "lineydata": 15, "badparamet": 15, "badpredict": 15, "bad_xmodel": 15, "bad_ymodel": 15, "linear_regress": [15, 16], "mod1": 15, "coef": [15, 16], "adj_r2": 15, "131": 15, "caclul": 15, "modx": 15, "78": 15, "scifi": 15, "b_2": [15, 16], "mulitipl": 15, "mod2": 15, "sleep_regressions_3d": 15, "3d": 15, "mpl_toolkit": 15, "mplot3d": 15, "axes3d": 15, "set_styl": 15, "whitegrid": 15, "add_subplot": 15, "111": [10, 15], "set_zlabel": 15, "lmm": 15, "plane": 15, "xs": 15, "tile": 15, "ys": 15, "zs": 15, "plot_surfac": 15, "scatter": 15, "angl": 15, "view_init": 15, "b_": 15, "y_pred": 15, "ss_resid": 15, "1838": 15, "7224883200004": 15, "forg": 15, "boldli": 15, "onward": 15, "ss_tot": [15, 16], "590000000002": 15, "hair": 15, "816101821524835": 15, "8161027191478786": 15, "yep": 15, "adj": 15, "incident": 15, "groan": 15, "sick": 15, "wholesal": 15, "df_": [15, 16], "tuesdai": [7, 15], "17th": 15, "omiss": 15, "worm": 15, "generaliz": 15, "residuals_": 15, "ss_re": [15, 16], "ss_mod": 15, "df_mod": 15, "df_model_": 15, "df_re": 15, "df_resid_": 15, "calucul": 15, "ms_mod": 15, "ms_re": [15, 16], "sf": 15, "215": 15, "2382865368443": 15, "1457300163209325e": 15, "regression_f": 15, "rl": 15, "sigma_b": 15, "812": 15, "revist": 15, "176426e": 15, "591e": 15, "85439996017091": 15, "hunt": 15, "parwis": 15, "hardlin": 15, "bonferroni": 15, "inflat": 15, "rcorr": 15, "628": 15, "903": 15, "566": 15, "098": 15, "panick": 15, "attain": 15, "strongest": 15, "cautiou": 15, "dan_sleep_standard": 15, "baby_sleep_standard": 15, "mod3": 15, "146": [], "relatiship": 15, "uncorrel": 15, "collinear": [], "screw": [15, 17], "adequaci": 15, "diagnos": 15, "ail": 15, "dispos": [7, 15], "revolv": 15, "studentis": 15, "gum": 15, "normalis": 15, "h_i": 15, "add_const": 15, "est": 15, "get_influ": 15, "res_standard": 15, "resid_studentized_intern": 15, "jackknif": 15, "nightmar": 15, "grumbl": 15, "sigma_": 15, "stud_r": 15, "outlier_test": 15, "student_resid": 15, "unadj_p": 15, "494821": 15, "621857": 15, "105570": 15, "271676": 15, "461729": 15, "645321": 15, "475346": 15, "635620": 15, "166721": 15, "867940": 15, "disproportion": 15, "junk": 15, "defect": 15, "ro": 15, "leverag": 15, "ascii_uppercas": 15, "constrain": [15, 16], "cook": 15, "d_i": 15, "ness": 15, "cooks_dist": 15, "df_cook": 15, "grai": 15, "prettifi": 15, "noterobust": [], "sw": 15, "veer": 15, "invok": 15, "standardized_residu": 15, "as_datafram": 15, "df_res_pr": 15, "pred": 15, "kung": 15, "fu": 15, "master": [7, 15], "tx": [15, 19], "regressor": 15, "downright": 15, "scari": 15, "footnot": 15, "christoph": 15, "nolan": 15, "vice": 15, "versa": 15, "fanat": 15, "h_": 15, "notabl": 16, "unbalanc": [], "mu_": 16, "marginalis": 16, "formul": 16, "presenc": 16, "model1": 16, "aov": [], "model2": 16, "4533": 16, "7267": 16, "7143": 16, "0000": [15, 16], "8409": 16, "4672": 16, "5816": 16, "0126": 16, "4170": 16, "2711": [15, 16], "1356": 16, "4898": 16, "1246": 16, "2933": 16, "6533": 16, "0544": 16, "uncorrect": [14, 16], "spoiler": 16, "f_a": 16, "_r": 16, "outset": 16, "evapor": 16, "sensat": 16, "urg": [16, 17], "rci": 16, "runn": 16, "ada84": 19, "reconsider": 19, "artifact": 19, "334": 19, "agr96": 19, "wilei": 19, "hoboken": 19, "nj": 19, "agr02": 19, "ans73": 19, "american": 19, "bhoconnell75": 19, "hammel": 19, "connel": 19, "graduat": 19, "erkelei": 19, "187": 19, "398": 19, "404": 19, "bf74": 19, "364": 19, "367": 19, "cs63": 19, "houghton": 19, "mifflin": 19, "boston": 19, "ma": 19, "csg63": 19, "donald": 19, "thoma": 19, "julian": 19, "nathaniel": 19, "lee": 19, "gage": 19, "coc54": 19, "annal": 19, "315": 19, "coh88": 19, "lawrenc": 19, "erlbaum": 19, "cramer46": 19, "princeton": 19, "dun61": 19, "ell10": 19, "meta": 19, "cambridg": 19, "ell02": 19, "michael": 19, "asia": 19, "1151": 19, "1172": 19, "ebp83": 19, "barston": 19, "pollard": 19, "syllogist": 19, "295": 19, "306": 19, "ehp11": 19, "hast": 19, "peacock": 19, "ed": 19, "fis22a": 19, "royal": 19, "societi": 19, "fis22b": 19, "transact": 19, "222": 19, "368": 19, "gs06": 19, "328": 19, "331": 19, "hay94": 19, "harcourt": 19, "fort": 19, "hmc05": 19, "saddl": 19, "river": 19, "6th": [16, 19], "hol79": 19, "scandinavian": 19, "hot04": 19, "mcgraw": 19, "hsu96": 19, "chapman": 19, "hall": 19, "london": 19, "ioa05": 19, "plo": 19, "med": 19, "697": 19, "701": 19, "kuhbergerfs14": 19, "fritz": 19, "scherndl": 19, "kt73": 19, "review": [17, 19], "237": 19, "251": 19, "key23": 19, "monetari": 19, "reform": 19, "macmillan": 19, "kw52": 19, "kruskal": 19, "walli": 19, "criterion": [15, 17, 19], "583": 19, "621": 19, "lar78": 19, "253": 19, "263": 19, "leh11": 19, "erich": 19, "eyman": 19, "creation": 19, "springer": 19, "lev60": 19, "olkin": [13, 19], "editor": [17, 19], "honor": 19, "harold": 19, "hotel": 19, "278": 19, "292": 19, "stanford": 19, "palo": 19, "alto": 19, "ca": [15, 19], "mcn47": 19, "psychometrika": 19, "153": 19, "157": 19, "mee67": 19, "pea00": 19, "magazin": 19, "pfu11": 19, "mr": 19, "von": 19, "osten": 19, "henri": 19, "holt": 19, "sa00": 19, "birkhaus": 19, "sha95": 19, "annual": 19, "561": 19, "584": 19, "sr94": 19, "biometri": 19, "ste46": 19, "677": 19, "680": 19, "sti86": 19, "wel47": 19, "tudent": 19, "biometrika": 19, "wel51": 19, "330": 19, "336": [16, 19], "yat34": 19, "supplement": 19, "217": 19, "235": 19, "weed": 20, "fan": 20, "navarro": 20, "jasp": 20, "jamovi": 20, "concentr": 20, "textual": 20, "forego": 20, "emili": 20, "koth": 20, "bookdown": 20, "lsr": 20, "BY": 20, "sa": 20, "520614752375916": 13, "35771062": [], "58285649": [], "18124928": [], "87165345": [], "35333772": [], "10911366": [], "74155069": [], "42264458": [], "23268415": [], "35225702": [], "52313138690589": [], "853899344758702": [], "20058272908474": [], "413614195429187": [], "097231846958": [], "031852221261412": [], "127": 10, "114": 10, "ipykernel_34445": 11, "ipykernel_34478": [], "stu08": 19, "harpohist_fig": 13, "keyerror": [], "3802": [], "get_loc": [], "3801": [], "_engin": [], "casted_kei": [], "3803": [], "err": [15, 16], "pyx": [], "indexengin": [], "hashtable_class_help": [], "pxi": [], "5745": [], "hashtabl": [], "pyobjecthasht": [], "get_item": [], "5753": [], "3807": [], "3805": [], "nlevel": [], "3806": [], "_getitem_multilevel": [], "3808": [], "is_integ": [], "3809": [], "3804": [], "listlik": [], "_check_indexing_error": [], "invalidindexerror": [], "0x156c18e50": [], "0x156cb7810": [], "ipykernel_84993": [], "4098096105": [], "keyword": [7, 10], "wil": 10, "ttestresult": 13, "temporari": [], "silenc": [], "seterr": [], "0x17d0090d0": [], "0x17d172ed0": [], "ipykernel_85531": [], "0x16c414290": [], "0x16c45f190": [], "ipykernel_85703": [], "0x284edb310": [], "0x284e5e3d0": [], "ipykernel_89710": [], "0x14ebfded0": [], "0x14ed64490": [], "ipykernel_89872": [], "0x13dd593d0": [], "0x13ee113d0": [], "ipykernel_90047": [], "ttesthyp_fig": 13, "0x14f64d6d0": [], "ipykernel_90237": [], "ttesthyp2_fig": 13, "ipykernel_90482": [], "pairedta_fig": 13, "scat": 13, "terplot": 13, "ipykernel_90589": [], "mcgrath": [13, 19], "meyer": [13, 19], "5041691240370937": 13, "1985": [13, 19], "1981": [13, 19], "sp": 13, "v1": 13, "v2": 13, "cohensd": 13, "9898831844329834": 13, "6551515460014343": 13, "2812": [], "scalex": [], "scalei": [], "arg": [], "kwarg": [], "2810": [], "_copy_docstring_and_deprec": [], "2811": [], "gca": [], "2813": [], "2814": [], "_ax": [], "1690": [], "1688": [], "_get_lin": [], "1689": [], "add_lin": [], "1691": [], "1692": [], "_request_autoscale_view": [], "_base": [], "_axesbas": [], "2301": [], "get_clip_path": [], "2302": [], "set_clip_path": [], "_update_line_limit": [], "2305": [], "get_label": [], "2306": [], "set_label": [], "_child": [], "_children": [], "2327": [], "2323": [], "2324": [], "2325": [], "datalim": [], "2326": [], "get_path": [], "2328": [], "2329": [], "1029": [], "1027": [], "1028": [], "_invalidi": [], "_invalidx": [], "recach": [], "1030": [], "_path": [], "660": [], "661": [], "yconv": [], "convert_yunit": [], "_yorig": [], "_to_unmasked_float_arrai": [], "ravel": [], "663": [], "664": [], "cbook": [], "1335": [], "1333": [], "asarrai": [], "1334": [], "1965": [13, 19], "ipykernel_71101": [], "hed81": 19, "128": 19, "ho85": 19, "mm06": 19, "386": 19, "401": 19, "sw65": 19, "591": 19, "611": 19, "ipykernel_71350": [], "ipykernel_75354": [], "ipykernel_75478": [], "392003": 14, "213698": 14, "281069": 14, "ipykernel_77133": [], "moodgain_fig": [], "605305": [], "9601900577545166": [], "605305016040802": [], "ipykernel_83958": [], "ipykernel_84056": [], "ipykernel_84159": [], "ipykernel_84247": [], "ipykernel_84350": [], "ipykernel_84747": [], "ipykernel_84951": [], "ipykernel_85139": [], "ipykernel_85235": [], "ipykernel_85513": [], "ipykernel_85728": [], "ipykernel_85908": [], "multiindic": 14, "themeselv": 14, "monstros": [], "ipykernel_86606": [], "seper": 7, "ipykernel_96371": [], "counter": [7, 14], "trace": 14, "resus": 14, "ipykernel_96517": [], "hmmm": 14, "ipykernel_96643": [], "ipykernel_96780": [], "ipykernel_96890": [], "ipykernel_96995": [], "ipykernel_97175": [], "ipykernel_97355": [], "ipykernel_97449": [], "ipykernel_97593": [], "riski": 14, "fwer": 14, "alpha_": [], "hypothesistest": [], "cite": 15, "shaffer1995": [], "_correct": [], "comparisons_": [], "posthoc2": [], "hsu1996": [], "_bonferroni": [], "correction_": [], "dunn1961": [], "142625": 14, "99407947": 14, "antsi": 14, "skeptic": 14, "chair": 14, "infrastructur": 14, "erect": 14, "regain": 14, "somedai": 14, "kinda": 14, "innit": 14, "aplomb": 14, "23828653684436": [], "1457300163208854e": [], "147": [], "139": [], "hasattr": [], "cl": [], "_autogenerated_signatur": [], "subclass": [], "141": [], "142": 15, "inherit": 7, "143": [], "hierarchi": [], "144": [], "flag": [], "145": [], "148": [], "__name__": [], "149": 15, "__qualname__": [], "1227": [], "1228": [], "docstr": [], "signatur": [], "1229": [], "_update_set_signature_and_docstr": [], "1230": [], "_internal_upd": [], "normalize_kwarg": [], "1223": [], "1216": [], "1217": [], "1218": [], "prenorm": [], "1219": [], "1220": [], "1221": [], "maintain": 7, "backcompat": [], "1222": [], "_update_prop": [], "1224": [], "prop_nam": [], "1197": [], "prop": [], "errfmt": [], "1195": [], "getattr": [], "set_": [], "1196": [], "callabl": [], "1198": [], "1199": [], "ret": [], "1200": [], "1990": 15, "ce": 15, "shill": 15, "duplic": 15, "2d": 15, "my_sleep": 15, "my_grump": 15, "upcom": 15, "\u00e0dj_r2": 15, "statisticali": [], "0435": 15, "8161": 15, "8123": 15, "0864": 15, "9047": 15, "0559": 15, "1715": 15, "0158": 15, "7937": 15, "0022": 15, "0388": 15, "9691": 15, "1089": 15, "1132": 15, "sink": 15, "cutoff": 15, "moreso": 15, "y\u02c6i": [], "yi": [], "fitted_v_observ": 15, "640x480": [], "lowess": 15, "curvatur": 15, "breusch": [15, 19], "pagan": [15, 19], "cozi": 15, "lagrang": 15, "linearli": 15, "bptest": 15, "het_breuschpagan": 15, "exog": 15, "24191983926486693": [], "8860694728713404": [], "bp79": 19, "trevor": 19, "adrian": 19, "heteroscedast": [15, 19], "coeffici": [16, 19], "econometrica": 19, "econometr": 19, "1287": 19, "1294": 19, "4886831614554388": 15, "7832200556890354": 15, "assur": [15, 17], "9656": 15, "0409": 15, "4231": 15, "9301": 15, "0010": 15, "9502": 15, "5535": 15, "0487": 15, "8518": 15, "0105": 15, "5275": 15, "5485": 15, "summari": [], "dep": 15, "wed": [], "jun": [], "2023": 15, "15e": 15, "287": 15, "aic": 15, "581": 15, "bic": 15, "588": 15, "nonrobust": 15, "041": 15, "423": 15, "930": 15, "553": 15, "852": 15, "271": [15, 16], "039": 15, "969": [15, 16], "527": 15, "549": 15, "omnibu": 15, "durbin": 15, "watson": 15, "743": 15, "jarqu": 15, "bera": 15, "jb": 15, "218": 15, "053": 15, "897": 15, "203": 15, "heteroskedast": [15, 19], "cov_typ": 15, "sandwich": 15, "hc1": 15, "201": 15, "78e": 15, "996": 15, "793": 15, "597": 15, "987": 15, "780": 15, "282": 15, "037": 15, "970": 15, "541": 15, "563": 15, "mmmm": 15, "smell": 15, "diag": 15, "1980": [15, 19], "june": 15, "vif": 15, "x_k": 15, "2_": 15, "b_k": 15, "variance_inflation_factor": 15, "listcomp": [], "960321": 15, "148528": 15, "658389": 15, "442617": 15, "015119": 15, "mighti": 15, "outliers_influ": 15, "784569": 15, "651038": 15, "residplot": 15, "line_kw": 15, "fri": [], "resid1": 15, "evenli": 15, "regressionn": 15, "p3": [15, 16], "mon": [], "jul": [], "nonaddit": 15, "tukey1949on": 15, "fox2018r": 15, "nonlinear": 15, "mod_curve_check": 15, "540": 15, "642": 15, "027": 15, "979": 15, "819": 15, "878": [15, 16], "958": 15, "867": 15, "494": 15, "522": 15, "603": 15, "773": [15, 19], "011": 15, "266": 15, "966": 15, "517": 15, "010": 15, "162": 15, "033": 15, "sdfsdafad": [], "cox": 15, "997024": 15, "626177": 15, "907817": 15, "103952": 15, "whi80": 19, "econometrika": 19, "838": 19, "logarithm": 15, "ln": 15, "boxcox": 15, "dan_sleep_transform": 15, "best_lambda": 15, "kdeplot": 15, "7912772737277842": 15, "997866": 15, "625397": 15, "895394": 15, "093393": 15, "989864": 15, "df_slplot": 15, "sqrt_abs_stand_r": 15, "sl": 15, "991": [], "989": [], "_pylab_help": [], "gcf": [], "destroy_fig": [], "990": [], "992": [], "discount": 15, "absorb": [15, 16], "ockham": 15, "razor": 15, "pithi": 15, "chuck": 15, "akaik": [15, 19], "2k": 15, "mod_ful": 15, "summai": 15, "811": 15, "42e": 15, "582": [15, 16], "2787": 15, "242": 15, "945": 15, "842": 15, "715": 15, "9693": 15, "081": 15, "858": 15, "0157": 15, "058": 15, "954": 15, "526": 15, "558": 15, "0044": 15, "015": 15, "288": 15, "774": 15, "035": 15, "026": 15, "599": 15, "741": 15, "898": 15, "441": 15, "wade": 15, "get_aic": 15, "model_nam": 15, "as_text": 15, "hairli": 15, "whitespac": 15, "mod_no_dai": 15, "mod_no_babi": 15, "mod_no_dan": 15, "710": 15, "579": 15, "747": 15, "inclin": 15, "seduct": 15, "inclus": 15, "nml": 15, "posterior": [15, 17], "ins": 15, "stepwis": 15, "narrowli": 15, "defeat": 15, "inexact": 15, "algorithm": 15, "differnc": 15, "tue": [], "nuisanc": 15, "m1": [15, 16], "m0": [15, 16], "pigouin": 15, "dandi": 15, "ic": 15, "get_aic_b": 15, "empir": 15, "submodel": 15, "superscript": 15, "waaaaai": 15, "m_0": 15, "m_1": 15, "mo": 15, "df_resid": [15, 16], "ssr": [15, 16], "df_diff": [15, 16], "ss_diff": [15, 16], "1837": 15, "155916": 15, "092228": 15, "063688": 15, "003328": 15, "954116": 15, "hierarch": 15, "regressiondiagnost": [], "drug_mean": 16, "therapy_mean": 16, "ss_drug": 16, "ss_therapi": 16, "_a": 16, "_t": 16, "_m": 16, "845": 16, "9244": 16, "noisi": 16, "wall_color": 16, "xxxxxxx": [], "panel1": 16, "panel2": 16, "panel3": 16, "panel4": 16, "errorbar": [10, 16], "p4": 16, "ps": 16, "panelid": 16, "get_legend": 16, "horizontalalign": 16, "verticalalign": 16, "set_xticklabel": 16, "get_legend_handles_label": 16, "legend": 16, "ncol": 16, "avec": 16, "crossov": 16, "alpha_r": 16, "beta_c": 16, "awkwardli": 16, "_c": 16, "rearrang": 16, "eqnarrai": [], "align": [16, 17], "727": 16, "714": 16, "841": 16, "467": 16, "013": 16, "490": 16, "293": 16, "653": 16, "compris": 16, "phobia": 16, "desensitis": 16, "vs": 16, "wel": [], "eta_a": 16, "2_a": 16, "effsiz": 16, "7128": [], "0964": [], "0560": [], "713": 16, "056": 16, "unaccount": 16, "789": 16, "pacakg": 16, "09545": 16, "99123": 16, "qqnorm": [], "928816": 16, "185093": 16, "fussi": 16, "\u00eemagin": [], "jointli": 16, "decompos": 16, "r0": 16, "misguid": 17, "basicbay": [], "whybay": [], "bayesconting": [], "ttestbf": [], "bayesregress": [], "bayesanova": [], "umbrella": 17, "dry": 17, "mediterranean": 17, "southern": 17, "northern": 17, "africa": 17, "summer": 17, "wikipedia": 17, "rainfal": 17, "raini": 17, "climate_of_adelaid": 17, "045": 17, "0425": 17, "8075": 17, "0450": 17, "1050": 17, "0875": 17, "9125": 17, "d_1": 17, "d_2": 17, "h_2": 17, "d1": 17, "514": 17, "interfer": 17, "restat": 17, "learner": 17, "paradigm": 17, "flow": 17, "leap": 17, "lengthi": [16, 17], "hphantom": [], "contrapt": 17, "plausibilti": 17, "ccccc": 17, "6pt": 17, "2pt": 17, "uparrow": 17, "bf": 17, "consider": 17, "jeffrei": [17, 19], "kass": [17, 19], "rafteri": [17, 19], "charit": 17, "upsid": 17, "inigo": 17, "montoya": 17, "princess": 17, "bride": 17, "forbidden": 17, "statstic": 17, "daili": [7, 17], "prei": 17, "newspol": 17, "2013": [17, 19], "emphasi": 17, "counterinuit": 17, "astrai": 17, "1925": [17, 19], "entitl": 17, "stringent": 17, "johnson2013": [], "threshold": 17, "stretch": 17, "portal": 17, "knowyourmem": 17, "meme": 17, "wiser": 17, "absurd": 17, "072": 17, "heard": 17, "fight": 17, "uphil": 17, "battl": 17, "career": 17, "suicid": 17, "academia": 17, "imdb": 17, "tt0093779": 17, "morei": 17, "steal": 17, "johnson": [17, 19], "enthusiast": 17, "budget": 17, "cost": 17, "kick": 17, "astoundingli": 17, "unaccept": 17, "lax": 17, "termin": [7, 17], "analyi": 17, "willpow": 17, "ineffici": 17, "balloon": 17, "extern": 17, "foolproof": 17, "whywhywhi": [], "fault": 17, "ambrosiu": 17, "macrobiu": 17, "quotationspag": 17, "ambrosius_macrobiu": 17, "sin": 17, "explictli": 17, "attack": 17, "straw": 17, "dial": 17, "vitriol": 17, "gear": 17, "supposedli": 17, "specul": 17, "gun": 17, "722": 17, "cdot": 9, "80042036": 9, "86043481": 9, "35375252": 9, "36144597": 9, "56924183": 9, "34600569": 9, "44885781": 9, "2415587": 9, "02471366": 9, "02290263": 9, "mathrm": 9, "3600096748558": [], "52992391769343": [], "7044051060008": [], "003466334432083": [], "77112912667978": [], "099208297733181": [], "notelawlargenumb": 10, "129": [], "aka74": 19, "ieee": 19, "716": 19, "723": 19, "fis25": 19, "oliv": 19, "boyd": 19, "edinburgh": 19, "jef61": 19, "oxford": 19, "joh13": 19, "valen": 19, "proceed": 19, "academi": 19, "19313": 19, "19317": 19, "kr95": 19, "robert": 19, "studio": 7, "extenst": 7, "expos": 7, "constantli": 7, "sugar": 7, "tea": 7, "coffe": 7, "spoon": 7, "bowl": 7, "pour": 7, "spoonful": 7, "bake": 7, "crack": 7, "yoke": 7, "swee": 7, "declar": 7, "sweet_enough": 7, "num_sugar_spoon": 7, "thrown": 7, "ingredi": 7, "flour": 7, "cinnamon": 7, "salt": 7, "powerful": 7, "colon": 7, "mandatori": 7, "flibbertigibbet": 7, "random_stuff": 7, "new_th": 7, "unsupport": 7, "operand": 7, "strng": 7, "wednesdai": 7, "encompass": 7, "thursdai": 7, "fridai": 7, "sundai": 7, "weekend": 7, "statment": 7, "perspicaci": 7, "letter_count": 7, "retyp": 7, "measure_word": 7, "precoci": 7, "IF": 7, "IT": 7, "WILL": 7, "tupl": 7, "first_lett": 7, "new_word": 7, "_if_": 7, "_you_": 7, "_say_": 7, "_it_": 7, "_loud_": 7, "_enough_": 7, "_will_": 7, "_always_": 7, "_sound_": 7, "_precocious_": 7, "dog": 7, "bunni": 7, "nihilist": 7, "NOT": 7, "new_numb": 7, "list_of_list": 7, "list_of_string_list": 7, "flattened_list": 7, "all_flow": 7, "begonia": 7, "lilac": 7, "rose": 7, "pansi": 7, "foxglov": 7, "buttercup": 7, "sunflow": 7, "b_flower": 7, "823452": 7, "4435": 7, "9070878072634": 7, "3421": 7, "4345": 7, "modulo": 7, "AND": 7, "baldfac": 7, "shebang": 7, "dunno": 7, "futz": 7, "sublist": 7, "paus": 7, "inst": 7, "untouch": 7, "check_first_lett": 7, "input_list": 7, "target_lett": 7, "output_list": 7, "food": 7, "pickl": 7, "beet": 7, "burger": 7, "chees": 7, "pepper": 7, "pizza": 7, "cardamom": 7, "cabbag": 7, "gerner": 7, "wheter": 7, "target": 7, "dilettant": 7, "stipul": 16, "model3": 16, "lump": 16, "formula1": 16, "formula3": [], "anovaresult": 16, "653333": 16, "738333": 16, "520408": 16, "024242": 16, "formula2": 16, "reassur": 16, "ss_res_nul": 16, "ss_res_ful": 16, "7383339999999999": 16, "ms_diff": 16, "f_stat": 16, "520414551231913": 16, "predictor1": 16, "predictor2": 16, "uglier": 16, "1p": 16, "2p": 16, "4356583710217": [], "797182424268012": [], "2154850507139": [], "4022151683824": [], "03319490190297": [], "054039128997667": [], "134": [], "02536241152112": [], "474882295087165": [], "08779941812442": [], "351776403288921": [], "01626459089115": [], "96223614291537": [], "124": [], "33971433769008": [], "655330245673708": [], "17861038487763": [], "712377772498066": [], "951064421052": [], "932120719256922": [], "262157162740991": 10, "ipykernel_63299": [], "4220361125": 10, "1339756836": 10, "3591514384": 10, "53960547224054": [], "186167782018202": [], "17191341063791": [], "86103856998936": [], "04894765095658": [], "098657549401311": [], "ipykernel_63592": [], "5083916244877": 10, "72448042232567": 10, "95368145848558": 10, "12238658574764": 10, "93179094823645": 10, "95182846479696": 10, "ipykernel_7964": 10, "util": [13, 14], "outdatedpackagewarn": [13, 14], "latest": [13, 14], "outdated_ignor": [13, 14], "disabl": [13, 14], "apr": [], "2024": 15, "bc": [], "sigmahat": 15, "stand_r": 15, "ivan": 15, "savov": 15, "ivanistheon": 15, "attend": 16, "membership": 16, "rtfm1": 16, "frown": 16, "rtfm2": 16, "rtfm_agg": 16, "epsilon_p": 16, "limb": 16, "gush": 16, "648": 16, "6000": 16, "0056": 16, "1568": 16, "2667": 16, "0008": 16, "7th": 16, "supris": 16, "_stats_pi": 16, "1736": 16, "kurtosistest": 16, "5000": 16, "354": 16, "873": 16, "006": 16, "956": 16}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"why": [0, 7, 17], "do": [0, 2, 12, 13], "we": [0, 16], "learn": [0, 8, 20], "statist": [0, 4, 8, 9, 10, 11, 12, 14, 17, 20], "On": [0, 8, 14], "psycholog": [0, 1], "The": [0, 1, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "curs": 0, "belief": [0, 17], "bia": [0, 1], "cautionari": 0, "tale": 0, "simpson": 0, "s": [0, 4, 9, 12, 13, 14], "paradox": 0, "everydai": 0, "life": [0, 4], "There": 0, "more": [0, 3, 5, 6], "research": [0, 1, 11], "method": [0, 3], "than": 0, "A": [1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17], "brief": 1, "introduct": [1, 5, 9], "design": [1, 16], "measur": [1, 4], "some": [1, 6, 11, 16], "thought": 1, "about": [1, 3, 17], "operationalis": 1, "defin": [1, 10], "your": [1, 6, 11], "scale": 1, "nomin": 1, "ordin": 1, "interv": [1, 10], "ratio": 1, "continu": [1, 12], "versu": [1, 11, 16], "discret": 1, "variabl": [1, 2, 3, 4, 6], "complex": [1, 5], "assess": 1, "reliabl": 1, "role": 1, "predictor": 1, "outcom": [1, 16], "experiment": 1, "non": [1, 13, 16], "valid": 1, "studi": [1, 11], "intern": 1, "extern": 1, "construct": [1, 12, 13, 17], "face": 1, "ecolog": 1, "confound": 1, "artifact": 1, "other": [1, 9, 17], "threat": 1, "histori": 1, "effect": [1, 11, 12, 13, 14, 16], "matur": 1, "repeat": 1, "test": [1, 11, 12, 13, 14, 15, 16, 17], "select": [1, 15], "differenti": 1, "attrit": 1, "respons": 1, "regress": [1, 15, 16, 17], "mean": [1, 4, 6, 9, 10, 13, 14, 17], "demand": 1, "reactiv": 1, "placebo": 1, "situat": 1, "subpopul": 1, "fraud": 1, "decept": 1, "self": 1, "summari": [1, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "get": [2, 4, 14], "start": [2, 3], "python": [2, 3, 4, 5, 9, 10, 12, 13, 14, 15, 16, 20], "instal": [2, 3], "us": [2, 3, 4, 7, 9, 13, 17], "code": 2, "thi": [2, 3, 16, 17], "book": [2, 3], "type": [2, 3, 11, 16, 17], "command": 2, "consol": 2, "Be": 2, "veri": 2, "care": 2, "avoid": 2, "typo": 2, "teeni": 2, "bit": 2, "flexibl": 2, "space": 2, "simpl": [2, 10], "calcul": [2, 4, 10, 14, 15, 16], "ad": 2, "subtract": 2, "multipli": 2, "divid": 2, "take": 2, "power": [2, 11], "right": [2, 9], "order": 2, "store": 2, "number": [2, 10], "concept": 3, "comment": [3, 12], "import": 3, "what": [3, 4, 9, 13, 16, 17], "librari": 3, "doe": [3, 9, 10, 16], "how": [3, 9, 10, 12, 14], "i": [3, 16], "list": [3, 6, 7], "object": 3, "activ": 3, "memori": 3, "remov": [3, 14], "from": [3, 6, 10, 13, 14], "workspac": 3, "load": 3, "save": [3, 5], "data": [3, 4, 5, 6, 11, 12, 13, 14, 15, 16, 17], "filesystem": 3, "path": 3, "csv": 3, "file": [3, 5], "datafram": [3, 6], "thing": 3, "know": 3, "check": [3, 13, 14, 15, 16], "regular": 3, "collect": 3, "interg": 3, "float": 3, "string": 3, "argument": 3, "find": [3, 17], "length": 3, "tupl": 3, "dictionari": 3, "combin": 3, "set": [3, 14, 16], "dynam": 3, "index": 3, "slice": [3, 6], "singl": [3, 4, 15], "valu": [3, 4, 11, 13, 15, 17], "rang": [3, 4], "between": [3, 11, 14, 15, 16], "end": 3, "nth": 3, "posit": [3, 13], "everi": 3, "item": [3, 6], "within": 3, "descript": 4, "central": [4, 10], "tendenc": 4, "median": 4, "differ": [4, 7, 9, 11, 12, 13, 16], "real": 4, "exampl": [4, 13, 14], "trim": 4, "mode": 4, "interquartil": 4, "absolut": 4, "deviat": [4, 10, 13], "varianc": [4, 14, 15, 16], "standard": [4, 10, 13, 16, 17], "which": 4, "skew": 4, "kurtosi": 4, "an": [4, 5, 14, 15, 16], "overal": 4, "describ": [4, 13], "frame": [4, 6], "score": 4, "correl": [4, 15], "strength": 4, "direct": 4, "relationship": [4, 14, 15], "coeffici": [4, 15], "interpret": [4, 10, 15, 16, 17], "handl": 4, "miss": 4, "case": [4, 15], "pairwis": [4, 14, 15], "epilogu": [4, 18], "good": [4, 12], "ar": [4, 9, 10, 16], "draw": 5, "graph": 5, "overview": 5, "graphic": 5, "plot": [5, 10, 13], "littl": 5, "color": 5, "titl": 5, "axi": 5, "label": 5, "font": 5, "size": [5, 11, 12, 13, 14, 16], "relat": 5, "matter": [5, 10], "open": 5, "box": 5, "histogram": 5, "boxplot": 5, "multipl": [5, 6, 14, 15], "altern": [5, 11, 12], "word": 5, "caution": 5, "violin": 5, "scatterplot": 5, "bar": 5, "imag": 5, "enough": 5, "now": 5, "wrangl": 6, "pull": 6, "out": 6, "content": 6, "tip": 6, "road": 6, "tabul": 6, "cross": 6, "convert": 6, "tabl": [6, 17], "count": [6, 16], "proport": 6, "transform": 6, "recod": 6, "creat": 6, "cut": 6, "numer": 6, "categori": [6, 16], "few": 6, "mathemat": 6, "function": [6, 7, 11, 15], "oper": 6, "round": 6, "row": 6, "wise": 6, "dice": 6, "pop": 6, "extract": [6, 17], "subset": 6, "sort": 6, "flip": 6, "merg": 6, "column": 6, "largest": 6, "smallest": 6, "transpos": 6, "join": 6, "concaten": 6, "reshap": 6, "wide": 6, "long": 6, "format": 6, "basic": [7, 9], "program": 7, "script": 7, "loop": 7, "condit": 7, "statement": 7, "comprehens": 7, "kind": [7, 15, 16], "nest": 7, "abstract": 7, "gener": [7, 15], "theori": [8, 9, 17], "limit": [8, 10], "logic": [8, 14], "reason": [8, 17], "without": 8, "make": [8, 11], "assumpt": [8, 12, 13, 14, 15, 16], "myth": 8, "probabl": [9, 11, 17], "frequentist": [9, 11], "view": [9, 11], "bayesian": [9, 11, 17], "And": 9, "who": 9, "introduc": [9, 13], "distribut": [9, 10, 11, 12], "binomi": 9, "work": [9, 13, 14], "normal": [9, 13, 14, 15, 16], "densiti": 9, "estim": [10, 13, 15], "unknown": 10, "quantiti": 10, "sampl": [10, 11, 12, 13, 17], "popul": 10, "random": 10, "most": 10, "much": 10, "you": [10, 14, 17], "don": 10, "t": [10, 13, 14, 17], "have": 10, "paramet": [10, 16], "law": 10, "larg": 10, "theorem": 10, "exist": [10, 16], "ani": 10, "confid": 10, "slight": 10, "mistak": [10, 11], "formula": [10, 14, 15], "hypothesi": [11, 12, 13, 15, 17], "menageri": 11, "hypothes": [11, 16], "null": [11, 12], "two": [11, 13, 14, 15, 16], "error": 11, "decis": 11, "critic": 11, "region": 11, "note": 11, "signific": [11, 15], "one": [11, 13, 14, 16], "side": [11, 13], "p": [11, 17], "softer": 11, "extrem": 11, "common": 11, "report": [11, 12], "result": [11, 12, 16, 17], "issu": 11, "propos": 11, "solut": 11, "run": [11, 14, 16], "practic": 11, "increas": 11, "consid": 11, "neyman": 11, "fisher": [11, 12], "trap": 11, "categor": 12, "analysi": [12, 16, 17], "chi": 12, "2": [12, 15], "fit": [12, 15], "card": 12, "gof": 12, "advanc": [12, 14], "specifi": [12, 16], "notat": 12, "independ": [12, 13, 17], "associ": 12, "our": [12, 16], "scipi": 12, "stat": 12, "pingouin": 12, "postscript": [12, 16], "correct": [12, 14], "exact": 12, "mcnemar": 12, "compar": [13, 14, 15, 16], "z": 13, "infer": 13, "problem": 13, "address": 13, "student": [13, 14], "pool": 13, "same": 13, "complet": 13, "neg": 13, "welch": 13, "pair": [13, 17], "One": 13, "cohen": 13, "d": 13, "qq": 13, "shapiro": 13, "wilk": 13, "wilcoxon": 13, "sever": 14, "wai": [14, 16], "anova": [14, 16, 17], "illustr": 14, "y": 14, "sum": [14, 16], "squar": [14, 16], "f": [14, 15, 16], "model": [14, 15, 16, 17], "comparison": [14, 16], "post": [14, 16], "hoc": [14, 16], "bonferroni": 14, "holm": 14, "write": [14, 17], "up": [14, 17], "robust": 14, "homogen": [14, 15, 16], "leven": [14, 16], "behind": 14, "kruskal": 14, "walli": 14, "addit": [14, 16], "detail": 14, "linear": [15, 16], "warn": 15, "quantifi": 15, "r": 15, "adjust": 15, "whole": 15, "individu": 15, "all": [15, 17], "standardis": 15, "three": 15, "residu": [15, 16], "anomal": 15, "factori": 16, "1": [], "balanc": 16, "interact": 16, "refer": 19, "mad": 14, "collinear": 15, "backward": 15, "elimin": 15, "caveat": 15, "degre": 16, "freedom": 16, "captur": 16, "allow": [], "exactli": 16, "main": 16, "chang": 16, "baselin": 16, "equival": 16, "binari": 16, "factor": [16, 17], "contrast": 16, "treatment": 16, "helmert": 16, "zero": 16, "unbalanc": 16, "coffe": 16, "iii": 16, "ii": [16, 17], "probabilist": 17, "ration": 17, "agent": 17, "likelihood": 17, "joint": 17, "updat": 17, "bay": 17, "rule": 17, "think": 17, "thei": 17, "evidentiari": 17, "can": 17, "believ": 17, "Is": 17, "realli": 17, "bad": 17, "conting": 17, "orthodox": 17, "text": 17, "plan": 17, "quick": 17, "refresh": 17, "version": 17, "best": 17, "includ": 17, "term": 17, "prior": 17, "befor": 17, "lie": 17, "while": 7, "syntax": 7, "pattern": 7}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}}) \ No newline at end of file +Search.setIndex({"docnames": ["01.01-intro", "01.02-studydesign", "02.01-getting_started_with_python", "02.02-more_python_concepts", "03.01-descriptives", "03.02-drawing_graphs", "03.03-pragmatic_matters", "03.04-basic_programming", "04.01-intro-to-probability", "04.02-probability", "04.03-estimation", "04.04-hypothesis-testing", "05.01-chisquare", "05.02-ttest", "05.03-anova", "05.04-regression", "05.05-anova2", "06.01-bayes", "06.02-epilogue", "bibliography", "landingpage"], "filenames": ["01.01-intro.ipynb", "01.02-studydesign.ipynb", "02.01-getting_started_with_python.ipynb", "02.02-more_python_concepts.ipynb", "03.01-descriptives.ipynb", "03.02-drawing_graphs.ipynb", "03.03-pragmatic_matters.ipynb", "03.04-basic_programming.ipynb", "04.01-intro-to-probability.ipynb", "04.02-probability.ipynb", "04.03-estimation.ipynb", "04.04-hypothesis-testing.ipynb", "05.01-chisquare.ipynb", "05.02-ttest.ipynb", "05.03-anova.ipynb", "05.04-regression.ipynb", "05.05-anova2.ipynb", "06.01-bayes.ipynb", "06.02-epilogue.ipynb", "bibliography.md", "landingpage.md"], "titles": ["1. Why do we learn statistics?", "2. A brief introduction to research design", "3. Getting Started with Python", "4. More Python Concepts", "5. Descriptive statistics", "6. Drawing Graphs", "7. Data Wrangling", "8. Basic Programming", "9. Statistical theory", "10. Introduction to Probability", "11. Estimating unknown quantities from a sample", "12. Hypothesis Testing", "13. Categorical data analysis", "14. Comparing Two Means", "15. Comparing several means (one-way ANOVA)", "16. Linear regression", "17. Factorial ANOVA", "18. Bayesian Statistics", "19. Epilogue", "20. References", "Learning Statistics with Python"], "terms": {"thou": 0, "shalt": 0, "answer": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "questionnair": [0, 1, 4, 9], "Or": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "quizz": [0, 12], "upon": [0, 1, 5, 10, 11, 14, 17], "world": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "affair": [0, 1, 10], "nor": [0, 1, 9, 11, 16, 17], "complianc": 0, "take": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "ani": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "test": [0, 4, 6, 8, 9, 10, 19], "sit": [0, 1, 3, 4, 6, 7, 9, 10, 11], "With": [0, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15], "statistician": [0, 1, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "commit": [0, 14, 20], "w": [0, 3, 7, 8, 13, 14, 15, 16, 19], "h": [0, 3, 9, 12, 14, 15, 17, 19], "auden": 0, "1": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "To": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "surpris": [0, 1, 2, 3, 4, 5, 9, 11, 12, 13, 14, 15, 16, 17], "mani": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "student": [0, 1, 2, 3, 4, 10, 11, 12, 15, 16, 17, 19, 20], "fairli": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17], "signific": [0, 12, 13, 14, 16, 17, 19], "part": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "educ": [0, 1, 2, 10, 11, 15, 19], "one": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 17, 19], "veri": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "rare": [0, 1, 3, 4, 10, 11, 13, 16], "favourit": [0, 1, 13], "after": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "all": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16], "you": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16], "realli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "love": [0, 1, 2, 3, 4, 5, 9, 11, 15, 16, 20], "idea": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "d": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 19], "probabl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 19, 20], "enrol": [0, 1, 9, 10], "class": [0, 1, 2, 3, 4, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17], "right": [0, 1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17], "now": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "so": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "surprisingli": [0, 1, 2, 4, 10, 11, 12, 13, 14, 15, 16, 17], "pretti": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "larg": [0, 1, 4, 5, 6, 9, 11, 12, 13, 14, 15, 16, 17], "proport": [0, 1, 4, 9, 11, 12, 14, 15, 16, 17, 19], "base": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "isn": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "t": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 15, 16, 19, 20], "happi": [0, 5, 9, 11, 12, 13, 14, 17], "about": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "fact": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "ha": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "much": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 20], "In": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "view": [0, 1, 5, 6, 10, 13, 14, 15, 16, 17], "thi": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20], "i": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20], "thought": [0, 2, 3, 4, 6, 9, 10, 11, 12, 13, 16, 17], "place": [0, 1, 2, 3, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17], "start": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "might": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "some": [0, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 17, 19], "common": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 17], "question": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "peopl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "have": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 19, 20], "stat": [0, 1, 2, 4, 9, 10, 11, 13, 14, 15, 16, 17, 20], "A": [0, 2, 8, 9, 19], "big": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "issu": [0, 1, 3, 4, 5, 6, 8, 10, 12, 15, 16], "hand": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "relat": [0, 1, 2, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "what": [0, 1, 2, 5, 6, 7, 8, 10, 11, 12, 14, 15, 20], "And": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17], "ar": [0, 1, 2, 3, 5, 6, 7, 8, 11, 12, 13, 14, 15, 17, 19], "scientist": [0, 1, 3, 4, 10, 11, 12, 13, 17], "bloodi": [0, 1, 10, 13, 14, 17], "obsess": [0, 11], "These": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "good": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19], "when": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "think": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20], "let": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "last": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "As": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "group": [0, 1, 3, 4, 6, 10, 11, 12, 13, 14, 16, 17], "seem": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "bizarr": [0, 1], "fixat": 0, "run": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 17], "everyth": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17], "us": [0, 1, 5, 6, 8, 10, 11, 12, 14, 15, 16, 19, 20], "often": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sometim": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "forget": [0, 1, 2, 3, 4, 5, 6, 9, 17], "explain": [0, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "It": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "kind": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 17, 20], "articl": [0, 1, 4, 9, 12], "faith": [0, 1, 2, 4, 12, 16, 17], "among": [0, 1, 3, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "especi": [0, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15], "social": [0, 1, 2, 6, 10], "your": [0, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17], "find": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19], "trust": [0, 1, 3, 6, 7, 9, 13, 14, 15], "until": [0, 2, 3, 5, 6, 7, 9, 10, 13, 14, 15, 17], "ve": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "done": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "undergradu": [0, 1, 9, 10, 15, 17], "forgiven": [0, 16], "re": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "complet": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 14, 15, 16, 17, 19], "mad": [0, 1, 4, 11, 15], "becaus": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "time": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "simpl": [0, 1, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 19], "don": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "just": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "sens": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "naiv": [0, 1, 17], "wai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 20], "most": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 19, 20], "lot": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "2": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 16, 17, 19], "my": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "monei": [0, 2, 10, 11, 14, 15], "best": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15], "ourselv": [0, 1, 3, 4, 5, 7, 9, 10, 11, 13, 14, 15, 16, 17], "enough": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "worri": [0, 1, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "human": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 19], "suscept": 0, "bias": [0, 8, 10, 11, 13], "temptat": [0, 11, 17], "frailti": [0, 17], "suffer": [0, 11, 14], "from": [0, 1, 2, 4, 5, 7, 8, 9, 11, 12, 15, 16, 17, 19, 20], "basic": [0, 1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16, 17], "safeguard": 0, "evalu": [0, 2, 4, 15], "evid": [0, 1, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19], "mean": [0, 2, 3, 5, 7, 8, 11, 12, 15, 16, 19], "gut": [0, 5, 11], "instinct": [0, 10, 15], "reli": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "verbal": [0, 1], "argument": [0, 1, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16], "raw": [0, 1, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17], "power": [0, 1, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 19], "reason": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 19], "come": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "up": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16], "approach": [0, 1, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 20], "like": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "work": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 15, 16, 17, 20], "sound": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 14, 15, 17], "me": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sinc": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "depart": [0, 13], "dig": [0, 1, 3, 5, 9, 13, 15, 16], "littl": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "deeper": [0, 1, 3, 11, 14], "here": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "Is": [0, 1, 3, 4, 5, 6, 8, 13, 16], "plausibl": [0, 8, 9, 10, 13, 17], "trustworthi": [0, 1, 4, 12, 13, 15], "construct": [0, 4, 6, 9, 10, 11, 14, 15, 16], "languag": [0, 2, 3, 4, 5, 7, 9, 11, 12, 13, 14, 17], "thing": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "harder": [0, 1, 2, 13, 14, 15], "sai": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "other": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16], "necessarili": [0, 1, 4, 6, 7, 8, 9, 11, 13, 14, 15, 16], "thei": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20], "fals": [0, 1, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "e": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "g": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 19], "quantum": 0, "electrodynam": 0, "theori": [0, 4, 6, 10, 11, 12, 13, 14, 15, 16, 19], "hard": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "word": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "our": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17], "aren": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "design": [0, 3, 5, 9, 10, 11, 12, 13, 14, 15, 17, 19], "solv": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 15, 17], "scientif": [0, 1, 4, 5, 9, 10, 11, 12, 13, 14, 15, 17], "problem": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 19, 20], "handl": [0, 1, 2, 5, 6, 7, 10, 12, 13, 14, 15, 16, 17], "dai": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "infer": [0, 4, 8, 9, 10, 14, 15, 16, 17], "given": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "biolog": [0, 10, 19], "evolut": 0, "slower": [0, 20], "cultur": 0, "chang": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "should": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "differ": [0, 1, 2, 3, 5, 6, 8, 10, 14, 15, 17, 19], "live": [0, 1, 2, 4, 10, 11, 12, 13, 17], "fundament": [0, 1, 4, 9, 11, 13, 14, 15, 16, 17], "sensibl": [0, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "requir": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "engag": [0, 1, 7], "induct": [0, 8, 10, 11], "make": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "wise": [0, 12, 14, 15, 17], "guess": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "go": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "beyond": [0, 1, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17], "immedi": [0, 3, 4, 7, 10, 14, 16], "generalis": [0, 1, 4, 10, 15, 16], "If": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "without": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17], "being": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "influenc": [0, 1, 2, 4, 6, 11, 14, 15, 16], "variou": [0, 2, 3, 7, 11, 15, 16, 17], "distractor": 0, "well": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "bridg": 0, "brooklyn": 0, "sell": [0, 2], "heck": [0, 4, 13], "next": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "section": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "show": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "even": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "deduct": [0, 8], "ones": [0, 1, 3, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "where": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "pre": [0, 1, 17], "exist": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17], "mostli": [0, 1, 3, 4, 5, 7, 9, 13, 14], "smart": [0, 1, 2, 7, 13], "certainli": [0, 1, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16], "smarter": [0, 1], "speci": [0, 3, 12, 17], "share": [0, 1, 5, 6, 7, 9, 10], "planet": [0, 12], "though": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "disagre": [0, 1, 6, 11, 19], "mind": [0, 1, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17], "quit": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "amaz": [0, 8, 9, 12], "capabl": 0, "incred": [0, 1, 5, 13, 15, 17], "feat": [0, 1], "That": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "doesn": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "perfect": [0, 1, 4, 5, 10, 11, 12, 13, 14, 15], "psychologist": [0, 1, 8, 9, 10, 11, 13, 14, 17], "shown": [0, 1, 2, 4, 7, 9, 10, 11, 13, 14, 15, 16, 17], "over": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "year": [0, 1, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 17], "neutral": [0, 11], "imparti": [0, 1], "swai": 0, "exampl": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17], "effect": [0, 2, 3, 4, 5, 6, 7, 9, 10, 15, 17, 19], "logic": [0, 1, 4, 6, 7, 11, 15, 16, 17, 19], "ask": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "decid": [0, 2, 3, 5, 9, 10, 11, 13, 14, 15, 16, 17], "whether": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "particular": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "valid": [0, 14, 15, 16, 17], "conclus": [0, 1, 8, 10, 13, 14, 16, 17], "would": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "true": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "premis": 0, "were": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "tend": [0, 1, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 17], "believ": [0, 1, 4, 8, 9, 10, 11, 12, 13, 14, 15], "shouldn": [0, 1, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16], "For": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "instanc": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "No": [0, 1, 4, 8, 9, 10, 11, 12, 13, 14, 15, 17], "cigarett": [0, 1], "inexpens": 0, "addict": 0, "therefor": [0, 1, 2, 3, 5, 8, 10, 11, 12, 13, 14, 15, 16, 17], "structur": [0, 1, 3, 5, 6, 7, 11, 12, 13, 14, 16], "ident": [0, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "both": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "howev": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "second": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "incorrect": [0, 4, 9, 10, 17], "result": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 13, 14, 15, 19], "case": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19], "also": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "But": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "entir": [0, 1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "irrelev": [0, 5, 9, 14, 15, 16], "topic": [0, 1, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16], "an": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 17, 19, 20], "consequ": [0, 1, 2, 4, 5, 8, 10, 11, 12, 13, 14, 16, 17], "involv": [0, 1, 2, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 19], "statement": [0, 1, 2, 3, 4, 9, 10, 11, 14, 16, 17], "invalid": [0, 1, 6], "final": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "unbeliev": 0, "suppos": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "perfectli": [0, 1, 3, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "abl": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17], "set": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17], "asid": [0, 1, 2, 3, 10, 11, 12], "pure": [0, 1, 4, 7, 9, 10, 11, 12, 13, 14], "its": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "merit": [0, 1, 13], "expect": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "100": [0, 1, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16], "0": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "ran": [0, 10, 11, 12, 13, 14, 15, 16, 17], "experi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17], "look": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "see": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "data": [0, 1, 2, 7, 8, 9, 10, 19], "feel": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "approxim": [0, 1, 2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15], "safe": [0, 1, 2, 3, 5, 11, 13, 14, 16], "okai": [0, 1, 2, 3, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "bother": [0, 4, 7, 11, 12, 13, 14, 15, 17], "murki": 0, "stuff": [0, 1, 2, 3, 4, 7, 10, 11, 12, 14], "gui": [0, 13], "taken": [0, 2, 3, 4, 6, 7, 9, 11, 12, 14, 15, 16, 17], "psych": [0, 1, 13], "know": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "classic": [0, 1, 4, 5, 16, 17, 19], "studi": [0, 2, 4, 5, 6, 10, 12, 13, 14, 15, 16, 17, 19], "evan": [0, 9, 19], "et": [0, 1, 6, 9, 19], "al": [0, 1, 9, 19], "1983": [0, 19], "exactli": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17], "found": [0, 1, 3, 9, 10, 11, 12, 14, 15, 16, 17], "agreement": [0, 6, 15], "went": [0, 1, 4, 5, 7, 14, 15], "hope": [0, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "92": [0, 4, 5, 10, 12, 15, 16], "8": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "Not": [0, 1, 2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "happen": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "intuit": [0, 1, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17], "truth": [0, 1, 2, 4, 8, 9, 10, 14, 15, 17], "against": [0, 4, 5, 6, 8, 12, 13, 14, 15, 16, 17], "46": [0, 4, 19], "oh": [0, 7, 8, 9, 12, 13, 14, 15], "dear": [0, 14], "appar": [0, 1, 5, 12, 13, 16], "present": [0, 1, 2, 4, 5, 10, 15, 16, 17], "strong": [0, 1, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17], "contradict": 0, "perceiv": [0, 7], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "did": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "wors": [0, 1, 3, 4, 11, 13, 15, 16, 17], "weak": [0, 2, 4, 5, 11, 12, 13, 15, 17], "agre": [0, 1, 4, 6, 8, 9, 11, 12, 17], "almost": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 17], "got": [0, 1, 2, 3, 4, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17], "wrong": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "3": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "horribl": [0, 1, 5, 17], "damn": [0, 15], "overal": [0, 5, 10, 11, 13, 14, 15, 16], "better": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20], "chanc": [0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "compens": 0, "prior": 0, "60": [0, 4, 5, 6, 9, 11, 12, 13, 14, 15, 16, 19], "judgement": 0, "correct": [0, 1, 2, 4, 7, 8, 9, 10, 11, 13, 15, 16, 17], "50": [0, 1, 4, 5, 6, 9, 10, 11, 12, 13, 16, 17, 19], "profession": [0, 1], "someon": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16], "came": [0, 4, 5, 6, 8, 9, 10, 11, 12, 14], "along": [0, 2, 4, 5, 7, 11, 13, 14, 15, 16, 20], "offer": [0, 2, 4, 9, 10, 11, 12, 16], "magic": [0, 1, 3, 4, 7, 10, 11, 12, 13, 14, 15, 17], "tool": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "improv": [0, 1, 4, 13, 14, 15, 16], "decis": [0, 5, 6, 9, 12, 17], "95": [0, 4, 9, 10, 12, 13, 14, 15, 17], "jump": [0, 3, 4, 6, 12, 13, 17], "Of": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "cours": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "thankfulli": 0, "actual": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "too": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "easi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17], "want": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "instead": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "need": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "bit": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "help": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "keep": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "person": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "under": [0, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "control": [0, 1, 5, 6, 11, 13, 14, 15, 16, 17, 19], "doe": [0, 1, 2, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 17], "honest": [0, 1, 3, 4, 5, 9, 11, 12, 13, 17], "follow": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "stori": [0, 1, 2, 4, 6, 9, 10, 11, 12, 13, 14, 16, 17], "1973": [0, 1, 4, 12, 19], "univers": [0, 1, 9, 10, 12, 13, 14, 19], "california": [0, 17], "berkelei": 0, "had": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "admiss": [0, 19], "postgradu": [0, 13], "specif": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "caus": [0, 1, 4, 5, 7, 10, 11, 12, 13, 14, 15, 17], "wa": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "gender": [0, 1, 6, 16], "breakdown": [0, 9, 10], "which": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "number": [0, 1, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 19], "applic": [0, 2, 5, 9, 10, 11], "percent": [0, 12, 17], "admit": [0, 7, 8, 11, 13, 14], "male": [0, 1, 6, 10, 11], "8442": 0, "44": [0, 12, 13, 16, 17], "femal": [0, 1, 6, 10, 11], "4321": 0, "35": [0, 1, 4, 5, 12, 13, 14, 15, 16, 19], "su": 0, "4": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "nearli": [0, 6, 7, 10, 14, 16], "13": [0, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17], "000": [0, 4, 10, 11, 13, 15, 16], "9": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "rate": [0, 1, 4, 11, 12, 13, 14, 15, 16, 17], "between": [0, 1, 4, 5, 6, 7, 8, 9, 10, 12, 13, 17, 19], "coincid": [0, 4, 11], "compel": [0, 15, 17], "reflect": [0, 1, 4, 6, 9, 10, 11, 13, 14, 16, 17], "favour": [0, 2, 4, 8, 11, 12, 17], "women": 0, "sort": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "either": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "crazi": [0, 9], "sexist": 0, "oddli": [0, 3, 12], "carefulli": [0, 1, 4, 12, 13, 14, 15, 16], "told": [0, 3, 4, 5, 7, 8, 9, 11, 12, 14, 16, 17], "rather": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "bickel": [0, 19], "1975": [0, 6, 19], "basi": [0, 1, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "turn": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "out": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "slightli": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "higher": [0, 1, 4, 11, 13, 16], "success": [0, 4, 9, 11], "fig": [0, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17], "figur": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 20], "six": [0, 4, 7, 8, 9, 14], "largest": [0, 1, 4, 5, 10, 14, 15], "name": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "remov": [0, 4, 5, 6, 9, 10, 11, 13, 15, 16], "privaci": 0, "myst_nb": [0, 11, 12, 13, 14, 15, 16], "import": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "glue": [0, 2, 4, 9, 11, 12, 13, 14, 15, 16], "panda": [0, 2, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 17], "pd": [0, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 17], "b": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "c": [0, 3, 4, 5, 7, 8, 9, 10, 12, 13, 15, 16, 19], "f": [0, 3, 9, 10, 12, 13, 19, 20], "825": [0, 15], "560": [0, 15], "325": 0, "417": [0, 16], "191": 0, "272": 0, "62": [0, 4, 11, 13, 16], "63": [0, 4, 9, 13, 15], "37": [0, 4, 6, 9, 16], "33": [0, 1, 4, 5, 6, 11, 13], "28": [0, 4, 5, 12, 15, 16, 19], "6": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "108": [0, 5, 10], "25": [0, 2, 4, 5, 6, 10, 11, 12, 13, 14, 15, 17], "593": [0, 6, 15], "375": 0, "393": 0, "341": 0, "82": [0, 3, 4, 5, 10, 15], "68": [0, 4, 5, 9, 10, 13, 15], "34": [0, 3, 6, 7, 9, 10, 15, 16, 19], "24": [0, 1, 3, 4, 5, 6, 9, 10, 13, 14, 15], "7": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "df": [0, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 17], "datafram": [0, 4, 5, 9, 10, 12, 13, 14, 15, 16], "berklei": 0, "tabl": [0, 1, 2, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 19], "displai": [0, 1, 4, 5, 9, 10, 13, 14, 15, 16], "5": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "remark": [0, 3, 8, 9, 10, 12, 17], "yet": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "across": [0, 1, 2, 4, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17], "lower": [0, 3, 4, 7, 10, 11, 13, 14, 15, 16, 17], "how": [0, 1, 2, 4, 5, 6, 7, 8, 11, 13, 15, 16, 17, 20], "same": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17], "firstli": [0, 1, 2, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16], "notic": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "equal": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "anoth": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "term": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "percentag": [0, 4, 9, 19], "engin": [0, 1, 4], "chemistri": 0, "high": [0, 1, 2, 4, 5, 9, 10, 11, 13, 15], "qualifi": [0, 5], "wherea": [0, 1, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16], "english": [0, 7, 9, 11, 12, 14, 16], "reject": [0, 4, 8, 11, 12, 13, 14, 15, 17, 19], "candid": [0, 5, 17], "qualiti": [0, 5, 12, 15], "abov": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "gener": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 16, 17, 19], "order": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "appli": [0, 1, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 19], "rank": [0, 4, 14, 19], "total": [0, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "get": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 20], "bold": [0, 1, 4, 10, 17], "whole": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17], "compar": [0, 4, 7, 9, 10, 11, 12, 17], "distribut": [0, 2, 4, 5, 6, 13, 14, 15, 16, 17, 19, 20], "themselv": [0, 1, 4, 5, 6, 7, 9, 10, 12, 13, 15, 17], "produc": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "suggest": [0, 1, 2, 3, 4, 5, 7, 9, 11, 12, 13, 14, 15, 16, 17], "below": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "trend": [0, 16], "systemat": [0, 1, 4, 10, 12, 13, 16], "strike": 0, "known": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "real": [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "first": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "encount": [0, 1, 3, 4, 8, 9, 10, 11, 12, 13, 14, 15, 16], "refus": [0, 9, 17], "while": [0, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17], "subtl": [0, 1, 2, 3, 4, 5, 9, 15], "lesson": [0, 4, 17], "buri": [0, 4, 14], "point": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "counterintuit": [0, 9, 11, 12, 14], "trap": [0, 1, 2], "ly": [0, 4, 12, 14, 17], "wait": [0, 4, 5, 12, 14, 15, 16, 17], "unwari": [0, 11], "teach": [0, 1, 3, 7, 13, 15, 17, 20], "scienc": [0, 1, 2, 10, 11, 17, 19], "cunningli": 0, "hidden": [0, 1, 10, 11, 12, 15, 16], "nook": 0, "cranni": 0, "complic": [0, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16], "os": [0, 3], "pathlib": 0, "path": [0, 9], "cwd": 0, "getcwd": 0, "chdir": 0, "str": [0, 3, 4, 7, 10], "parent": [0, 1, 4, 13], "df_berk": 0, "read_csv": [0, 3, 4, 5, 6, 12, 13, 14, 15, 16, 17], "berkeley2": 0, "csv": [0, 4, 5, 6, 7, 12, 13, 14, 15, 16, 17], "seaborn": [0, 2, 3, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16], "sn": [0, 3, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16], "plot": [0, 4, 6, 7, 9, 11, 14, 15, 16], "berk": 0, "berkelyplot": 0, "lmplot": 0, "x": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16], "y": [0, 1, 3, 4, 5, 7, 9, 10, 11, 12, 13, 15, 16], "hue": [0, 9, 10, 16], "size": [0, 1, 3, 6, 9, 10, 15, 17, 19], "xlabel": [0, 4, 5, 9, 10, 11, 12, 13, 15], "pecentag": 0, "ylabel": [0, 4, 5, 9, 10, 11, 12, 13, 15], "befor": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "leav": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16], "someth": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "els": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "critic": [0, 1, 3, 6, 8, 9, 10, 12, 13, 15], "overlook": [0, 14], "rememb": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "concern": [0, 1, 2, 3, 4, 6, 10, 11, 12, 14, 15, 16, 17], "process": [0, 1, 2, 3, 4, 5, 7, 10, 11, 12, 13, 14, 15, 17], "unfairli": 0, "aggreg": [0, 1, 14], "discrimin": [0, 8, 11, 13], "disaggreg": [0, 1], "individu": [0, 1, 2, 4, 7, 9, 13, 14, 16], "behaviour": [0, 1, 2, 4, 5, 10, 12, 13, 14, 17], "anyth": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "self": [0, 2, 6, 10], "select": [0, 4, 5, 6, 10, 12, 14], "legal": [0, 11], "perspect": [0, 1, 2, 3, 4, 7, 9, 10, 11, 14, 15, 16, 17], "put": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 20], "clear": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "determin": [0, 1, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16, 17], "level": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "less": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "unbias": [0, 4, 10], "small": [0, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "consist": [0, 1, 3, 4, 5, 6, 8, 10, 11, 13, 14, 17, 19], "dictat": 0, "choos": [0, 1, 2, 3, 4, 5, 6, 11, 12, 13, 14, 15, 17], "hardli": [0, 11, 15, 17], "held": 0, "account": [0, 1, 10, 11, 12, 13, 14, 15, 16, 17], "those": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "choic": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 17], "somewhat": [0, 1, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "glib": [0, 12], "earlier": [0, 1, 2, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "interest": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sociolog": 0, "revers": [0, 1, 3, 11, 13, 15], "still": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "everi": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "singl": [0, 2, 5, 6, 7, 9, 10, 11, 13, 14, 16, 17], "itself": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "hypothet": [0, 4, 9, 16], "prefer": [0, 1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17], "further": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 15, 16, 17], "low": [0, 1, 4, 5, 10, 11, 12, 13, 15], "govern": [0, 1, 9, 16], "fund": 0, "ph": [0, 1], "ti": [0, 2, 3, 13, 14, 15], "project": [0, 1, 6, 10, 12, 15, 17], "constitut": [0, 5, 16], "unenlighten": 0, "valu": [0, 1, 2, 5, 6, 7, 9, 10, 12, 14, 16, 19], "cut": [0, 4, 5, 9, 12, 14, 15, 17], "felt": [0, 3, 13], "useless": [0, 4, 5, 10, 13, 15], "chick": 0, "blatantli": 0, "none": [0, 1, 4, 5, 7, 8, 10, 12, 13, 14, 17], "fall": [0, 1, 4, 5, 9, 10, 11, 12, 13, 15, 16, 17], "within": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "purview": 0, "matter": [0, 1, 2, 3, 4, 6, 7, 9, 11, 12, 13, 15, 16, 17], "short": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16], "huge": [0, 4, 5, 10, 13, 14, 15, 20], "impact": [0, 7, 9], "analys": [0, 1, 2, 4, 5, 6, 7, 9, 11, 12, 14, 15, 16, 17], "interpret": [0, 1, 2, 5, 6, 7, 9, 11, 12, 13, 14, 19], "alwai": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "end": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "substitut": [0, 13, 16, 17], "care": [0, 1, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "discuss": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "focus": [0, 1, 2, 4, 8, 9, 10, 12, 13, 17], "m": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20], "role": [0, 2, 3, 10, 17], "plai": [0, 1, 3, 4, 5, 8, 9, 10, 14, 16], "devot": [0, 3, 6, 9], "lectur": [0, 1, 2, 4, 10, 13, 16], "attempt": [0, 1, 2, 4, 5, 7, 9, 10, 11, 13, 14, 15, 17], "few": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "them": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "glorious": 0, "messi": [0, 2, 4, 6, 11, 12], "infuriatingli": 0, "pervers": 0, "physic": [0, 1, 3, 9, 19], "includ": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16], "object": [0, 4, 6, 9, 10, 11, 15, 17], "electron": 0, "complex": [0, 3, 4, 6, 7, 10, 15, 17], "aris": [0, 1, 4, 6, 9, 10, 13, 14, 16], "own": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17], "opinion": [0, 1, 3, 5, 6, 9, 10, 11, 12, 14, 17], "each": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "weird": [0, 1, 4, 5, 8, 9, 11, 12, 15], "arbitrari": [0, 1, 4, 9, 13], "bore": [0, 1, 4, 5, 6, 11, 14, 15, 16], "middl": [0, 1, 3, 4, 5, 6, 9, 13, 15, 16, 17], "angri": 0, "experiment": [0, 9, 10, 11, 12, 13, 14, 16, 17, 19], "deliber": [0, 1, 10, 11, 12, 16], "try": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sabotag": 0, "ever": [0, 1, 2, 3, 7, 8, 9, 11, 14, 15, 16, 17], "At": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "physicist": [0, 1], "luxuri": 0, "pathet": 0, "comparison": [0, 4, 7, 12, 13, 15, 17, 19], "vast": [0, 1, 4, 5, 9, 11, 12, 13], "mess": [0, 2, 3, 5, 11], "confront": [0, 1], "desper": [0, 11, 15, 17], "reliant": [0, 6], "bad": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15], "pick": [0, 1, 4, 5, 6, 9, 10, 11, 12, 13, 15, 17], "extent": [0, 1, 2, 4, 5, 6, 13, 14, 15, 16], "becom": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "fulli": [0, 16], "train": [0, 1, 9, 12, 17], "reach": [0, 10, 17], "certain": [0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16], "compet": 0, "three": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17], "ought": [0, 1, 2, 3, 5, 7, 10, 12, 14, 15], "deepli": [0, 1, 4, 5, 9], "intertwin": [0, 1], "least": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "understand": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "secondli": [0, 1, 5, 6, 8, 9, 10, 13, 14, 15, 16], "side": [0, 4, 5, 7, 8, 9, 10, 12, 14, 15, 16, 17], "literatur": [0, 4, 8, 9, 11, 12, 14, 17], "paper": [0, 1, 2, 5, 7, 9, 10, 11, 12, 14, 15, 17], "report": [0, 1, 4, 5, 9, 10, 13, 14, 15, 16, 17], "amount": [0, 1, 3, 4, 5, 10, 11, 12, 13, 15, 17], "thirdli": [0, 5, 15], "practic": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 17, 19], "depend": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "analysi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 19], "expens": [0, 2, 4, 10, 13, 17], "australian": [0, 1, 4, 5, 9, 10, 12, 13], "charg": 0, "fee": [0, 2], "ll": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "nation": [0, 4, 10, 19], "prioriti": [0, 2], "categori": [0, 1, 4, 9, 10, 11, 12, 17], "area": [0, 1, 5, 9, 11, 13], "massiv": [0, 2, 4, 5, 12, 13], "shortag": 0, "law": [0, 1, 9, 11, 17], "suppli": [0, 5, 10, 12], "demand": [0, 10, 15], "situat": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "cruel": 0, "afford": [0, 4, 9], "econom": [0, 10], "suffici": [0, 1, 2, 4, 10, 11, 12, 13, 14, 15, 16], "note": [0, 1, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 19], "stai": [0, 5, 6, 7, 9], "top": [0, 1, 3, 4, 5, 6, 9, 10, 12, 13, 15, 16, 20], "field": [0, 1, 2, 4, 8, 9, 11, 12, 15, 17], "read": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "heavili": [0, 1, 5, 10, 13, 14, 15, 16], "job": [0, 4, 5, 6, 9, 11, 12, 15, 17, 20], "clinic": [0, 1, 4, 10, 14, 16, 17], "everyon": [0, 1, 2, 4, 9, 10, 11, 12, 13, 15, 16, 17], "21st": 0, "centuri": [0, 9, 11, 12, 14, 17], "everywher": [0, 7, 9, 12, 13], "frankli": [0, 4, 5], "knowledg": [0, 1, 4, 5, 9, 10, 12, 13, 15, 17], "close": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "surviv": 0, "drown": 0, "inform": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "starv": 0, "author": [0, 1, 3, 5, 6, 12, 13, 14, 15, 16, 17], "origin": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "john": [0, 5, 9, 10, 19], "naisbitt": 0, "write": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16], "took": [0, 1, 4, 6, 7, 13, 15, 17], "20": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "recent": [0, 3, 4, 5, 7, 8, 9], "new": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "post": [0, 1, 15], "abc": [0, 4, 17], "websit": [0, 4, 10], "call": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "made": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "mistak": [0, 1, 4, 5, 7, 9, 12, 14, 17], "error": [0, 1, 2, 3, 4, 5, 10, 12, 13, 14, 15, 16, 17, 19], "curiou": [0, 1, 4, 6, 13, 16], "fail": [0, 1, 11, 13, 15, 16, 17], "baselin": 0, "mention": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16], "characterist": [0, 1, 4, 6, 9, 10, 11], "journalist": [0, 4], "biggest": [0, 1, 4, 11, 13, 14, 15, 17], "newspap": [0, 1, 9], "internet": [0, 1, 3, 5, 11, 15], "far": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "frequent": [0, 4, 12], "hous": [0, 3, 4, 7, 10, 13, 15], "price": [0, 2, 4], "australia": [0, 4, 10, 11, 17], "later": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20], "version": [0, 1, 2, 4, 5, 6, 7, 11, 12, 13, 14, 15, 20], "book": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "anecdot": 0, "line": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17, 20], "talk": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "fair": [0, 3, 4, 5, 8, 9, 11, 12, 13, 14, 15, 17], "wouldn": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "methodolog": [0, 1, 10, 11, 12, 19], "broader": [0, 1, 5, 10, 13, 15, 16], "concept": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16], "cover": [0, 1, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "pragmat": [0, 1, 6, 9, 17], "99": [0, 4, 9, 10, 11, 13, 15], "fear": [0, 7, 12, 15], "hopefulli": [0, 3, 4, 7, 12, 14, 16], "convinc": [0, 1, 9, 10, 11, 12, 15, 16], "importantli": [0, 9, 10, 11, 15], "said": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "typic": [0, 1, 3, 4, 9, 10, 12, 13, 14, 15, 16], "introductori": [0, 3, 9, 10, 11, 12, 13, 15, 17], "heavi": [0, 13, 15], "usual": [0, 1, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "evil": [0, 1], "contrari": [0, 8, 17], "focu": [0, 1, 3, 4, 5, 7, 9, 11, 12, 13, 14, 15, 16], "yourself": [0, 1, 2, 3, 4, 5, 6, 7, 9, 12, 13, 14, 15, 16, 17], "assign": [0, 1, 2, 3, 4, 6, 7, 9, 11, 12, 13, 14, 17], "greater": [0, 1, 11, 13, 14, 15, 16, 17], "ground": [0, 1, 3, 4, 5, 9, 11, 14], "collect": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 14, 15, 17], "allow": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "urgent": 0, "stress": [0, 4, 5, 10, 17], "spend": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 17], "provid": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "core": [0, 2, 3, 4, 6, 14], "type": [0, 1, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15], "principl": [0, 1, 3, 11, 12, 13, 14, 15, 16, 19], "idiosyncrat": [0, 1], "detail": [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17], "quot": [0, 4, 5, 6, 7, 8, 10, 11, 12, 17], "1946": [0, 1, 12, 19], "poem": 0, "lyre": 0, "reactionari": 0, "tract": [0, 19], "deliv": 0, "commenc": 0, "address": [0, 1, 3, 4, 10, 11, 12, 14], "harvard": [0, 19], "histori": [0, 4, 7, 9, 11, 13, 17, 19], "http": [0, 1, 3, 4, 5, 6, 8, 10, 12, 13, 14, 15, 16, 17], "harvardmagazin": 0, "com": [0, 3, 4, 5, 6, 8, 12, 13, 14, 15, 16, 17], "2007": 0, "11": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "poet": 0, "warn": [0, 1, 3, 12, 13, 14, 16, 17], "html": [0, 8, 10], "cynic": [0, 16], "moment": [0, 1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "alon": [0, 13, 17], "incorrectli": [0, 11, 12, 14, 15], "nice": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "commentari": [0, 9], "www": [0, 4, 8, 10, 17], "refsmmat": 0, "2016": 0, "05": [0, 4, 11, 12, 13, 14, 15, 17], "08": [0, 4, 14, 15, 16, 17], "thank": [0, 7, 9, 15, 20], "wilfri": 0, "van": 0, "hirtum": 0, "teensi": 0, "advanc": [0, 1, 2, 7, 9, 11, 13], "consult": [1, 3, 11], "finish": [1, 3, 4, 5, 7, 10, 11, 12, 14, 17], "mere": [1, 4, 8, 10, 14], "him": [1, 8, 14], "conduct": [1, 9, 10, 11, 12, 13, 14], "mortem": 1, "examin": [1, 4, 12, 15, 16], "he": [1, 2, 3, 4, 8, 10, 11, 12, 13, 17], "perhap": [1, 3, 4, 5, 6, 9, 10, 11, 13, 14, 15, 16, 17], "di": 1, "sir": [1, 9, 11, 12, 13, 14, 17], "ronald": [1, 9, 11, 12, 13, 14, 17], "fisher": [1, 4, 9, 13, 14, 17, 19], "chapter": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "we": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "check": [1, 4, 6, 7, 8, 9, 11, 12, 17], "won": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 20], "give": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "more": [1, 2, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "than": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "overview": [1, 13, 17], "special": [1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17], "two": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 17, 20], "s": [1, 2, 3, 5, 6, 7, 8, 10, 11, 15, 16, 17, 19, 20], "statist": [1, 2, 3, 5, 6, 7, 13, 15, 16, 19], "nevertheless": [1, 4, 5, 9, 10, 11, 12, 13, 15, 17], "tradit": [1, 4, 13, 14, 15], "textbook": [1, 2, 4, 9, 11, 12, 14, 16, 17], "campbel": [1, 19], "stanlei": [1, 19], "1963": [1, 19], "steven": [1, 19], "precis": [1, 2, 3, 4, 9, 10, 11, 13, 14, 15, 16, 17], "citat": 1, "do": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17, 20], "down": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "label": [1, 2, 4, 6, 9, 10, 12, 14, 15, 16, 17], "descript": [1, 2, 5, 9, 10, 11, 12, 13, 14, 17], "count": [1, 2, 3, 4, 5, 7, 10, 11, 12, 13, 14, 15, 17], "ag": [1, 6, 7, 10], "anchovi": 1, "chromosom": 1, "identifi": [1, 2, 7, 11, 12, 13, 15], "list": [1, 2, 4, 5, 9, 10, 11, 12, 13, 14, 15, 17], "italicis": 1, "expand": [1, 4, 5, 11, 13, 14, 15, 17], "possibl": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "could": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "arisen": [1, 19], "been": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "etc": [1, 3, 4, 6, 10, 12, 14, 15, 16], "upper": [1, 3, 4, 7, 10, 11, 13, 15, 16, 19], "bound": [1, 10, 15], "fuzzi": 1, "150": [1, 4, 12, 16, 17], "long": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15], "xy": [1, 3, 4, 11, 12, 14], "xx": 1, "klinfelt": 1, "syndrom": 1, "xxy": 1, "similar": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "imagin": [1, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "mai": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "neither": [1, 4, 11, 14, 15, 16], "explicitli": [1, 4, 10, 11, 12, 14, 15, 16, 17], "myself": [1, 2, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 17], "transgend": [1, 10], "obviou": [1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "tricki": [1, 4, 6, 9, 11, 12], "assum": [1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "development": 1, "crude": [1, 10, 17], "month": [1, 3, 7, 14], "child": [1, 4, 6], "written": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "newborn": 1, "birth": 1, "mayb": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16], "hour": [1, 4, 5, 7, 15, 16], "specifi": [1, 4, 5, 6, 9, 10, 11, 13, 15], "realis": [1, 2, 5, 7, 8, 11, 12, 13, 14], "implicitli": [1, 14], "length": [1, 4, 6, 7, 10, 14, 15], "babi": [1, 4, 12, 15], "ey": [1, 3, 5, 6, 10], "movement": 1, "kid": [1, 4, 15, 17], "young": [1, 6, 17], "meaning": [1, 4, 5, 6, 9, 11, 13, 14, 16, 17], "alic": 1, "born": [1, 10, 12], "week": [1, 3, 4, 5, 7], "prematur": 1, "bianca": 1, "late": [1, 7], "ye": [1, 3, 4, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "convent": [1, 3, 4, 5, 6, 10, 11, 12, 17], "refer": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "everydai": [1, 4, 7, 8, 9, 10, 11, 14], "life": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "oper": [1, 2, 3, 4, 7, 10, 16], "independ": [1, 9, 10, 11, 14, 15, 16], "entiti": [1, 9, 10, 15], "biologi": 1, "beings": [1, 9, 10, 17], "organ": [1, 3, 5, 10], "grow": [1, 9, 10], "deal": [1, 2, 3, 4, 5, 10, 12, 13, 14, 15, 17], "adult": [1, 6], "move": [1, 3, 4, 6, 9, 11, 13, 14, 15], "method": [1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "old": [1, 2, 3, 4, 6, 7, 9, 10, 11, 14, 15, 16], "fast": [1, 3, 12, 15, 17], "cheap": 1, "lie": [1, 3, 4, 5, 7, 9, 10, 13, 15], "around": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sure": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "obstetrician": 1, "offici": [1, 17], "record": [1, 4, 6, 7, 8, 10, 12, 13, 16, 17], "certif": 1, "consum": 1, "annoi": [1, 2, 4, 5, 6, 7, 11, 13, 14, 16, 17], "dead": [1, 10], "previou": [1, 2, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "vagu": [1, 10, 11, 12, 17], "sever": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 19], "Being": [1, 12], "context": [1, 2, 3, 4, 5, 6, 11, 12, 13, 14, 15, 16, 17], "Will": 1, "phrase": [1, 4, 7, 10, 11, 12, 13, 15], "numer": [1, 3, 4, 10, 13, 16], "option": [1, 3, 5, 6, 7, 10, 12, 13, 15, 17], "open": [1, 2, 3, 10, 12, 14, 15, 20], "busi": [1, 2, 3, 4, 5, 12, 15, 17], "formal": [1, 11, 13, 15, 16], "commun": [1, 4, 12, 17], "who": [1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17], "establish": [1, 11, 12, 16], "through": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 20], "aspect": [1, 4, 13], "terminolog": [1, 2, 9, 10, 11, 12, 14, 15, 16, 17], "introduc": [1, 2, 3, 4, 5, 6, 10, 11, 12, 14, 15, 16, 17], "four": [1, 2, 4, 6, 7, 9, 10, 11, 12, 15, 16, 17], "theoret": [1, 8, 10, 11, 12, 13, 14, 15, 19], "directli": [1, 2, 4, 5, 6, 7, 11, 12, 14, 16], "observ": [1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "survei": [1, 2, 4, 9, 10, 12, 17], "brain": [1, 11, 14], "scan": [1, 15], "connect": [1, 3, 9, 14], "deriv": [1, 4, 9, 12, 14, 15], "blur": 1, "distinct": [1, 3, 4, 5, 9, 10, 11, 12, 13, 14, 15, 17], "indic": [1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16, 17], "qualit": [1, 4, 9, 11, 13, 14, 15, 16], "distinguish": [1, 4, 6, 10, 14, 16], "categor": [1, 6, 9, 13, 17, 19], "relationship": [1, 5, 6, 9, 10, 11, 12, 13, 16, 17], "bigger": [1, 4, 7, 9, 10, 11, 12, 13, 14, 15, 17], "absolut": [1, 2, 3, 6, 11, 13, 14, 15, 17], "averag": [1, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "colour": [1, 10, 11, 16], "blue": [1, 3, 5, 9, 10, 12, 13, 15], "green": [1, 3], "brown": [1, 14, 19], "similarli": [1, 4, 9, 11, 12, 13, 14, 15, 16, 17], "closer": [1, 2, 4, 10, 11, 13, 14, 15, 16], "commut": 1, "One": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 19], "transport": 1, "bu": [1, 9], "car": 1, "bicycl": 1, "todai": [1, 7, 9, 11, 15, 17], "12": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "30": [1, 2, 4, 5, 6, 9, 11, 12, 13, 15, 16, 17], "48": [1, 13, 14, 15, 16, 17, 19], "10": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17], "obvious": [1, 2, 3, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20], "silli": [1, 2, 5, 7, 10, 11, 12, 13, 15, 17], "travel": [1, 4], "popular": [1, 4, 5, 7, 12, 15, 16], "bike": 1, "chosen": [1, 2, 3, 4, 5, 10, 11, 12, 13, 15, 17], "noth": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "natur": [1, 2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15], "posit": [1, 2, 4, 6, 7, 10, 11, 12, 15, 16, 17], "race": 1, "faster": [1, 2, 14], "1st": [1, 2, 8], "2nd": [1, 6, 19], "3rd": [1, 6, 16, 19], "larger": [1, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "attitud": 1, "climat": [1, 17], "match": [1, 4, 7, 9, 13, 14], "belief": [1, 8, 9, 10, 11, 19], "temperatur": [1, 9], "rise": [1, 4, 9, 11, 12, 13, 15, 16], "activ": [1, 6], "why": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19], "current": [1, 2, 3, 4, 6, 10, 12, 13, 14, 15, 16, 17], "opposit": [1, 5, 11, 12, 13, 16], "endors": [1, 9, 15], "item": [1, 4, 7, 12], "violat": [1, 6, 12, 13, 14, 15, 16], "51": [1, 6, 11, 12, 13, 15, 17], "19": [1, 4, 6, 7, 9, 13, 14, 15, 16, 19], "togeth": [1, 3, 4, 5, 6, 7, 9, 10, 12, 13, 15, 16], "81": [1, 4, 12, 15], "willing": [1, 8, 9, 11, 12, 13, 14, 17], "partial": [1, 4, 5, 13, 14, 16], "49": [1, 13, 14, 17], "regist": [1, 6], "disagr": [1, 11, 15], "domin": [1, 5, 9, 11, 17], "90": [1, 3, 4, 6, 10, 12, 13, 15, 16, 19], "There": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "97": [1, 4, 10, 11, 15], "tell": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "gibberish": [1, 4, 11, 12], "contrast": [1, 4, 5, 9, 10, 11, 13, 14, 15, 17], "genuin": [1, 2, 4, 5, 6, 9, 11, 12, 13, 15, 16], "zero": [1, 3, 4, 5, 6, 7, 9, 12, 13, 15, 17], "degre": [1, 5, 9, 10, 11, 12, 13, 14, 15, 17], "celsiu": 1, "15": [1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "circ": 1, "yesterdai": 1, "18": [1, 3, 4, 5, 6, 7, 9, 10, 13, 14, 15, 16, 17], "moreov": [1, 10, 11, 16], "addit": [1, 2, 3, 4, 12, 13, 15], "subtract": [1, 3, 6, 12, 14, 16], "water": [1, 5], "freez": 1, "pointless": [1, 17], "multipli": [1, 3, 4, 9, 10, 12, 13, 14, 15, 16, 17], "divid": [1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "twice": [1, 10, 12, 14], "hot": [1, 9, 14, 17], "meaningless": [1, 4, 6, 9, 11, 14, 15, 16, 17], "claim": [1, 7, 9, 10, 11, 12, 13, 14, 15, 17], "neg": [1, 3, 4, 6, 9, 12, 15, 16], "again": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "2003": 1, "arriv": [1, 9, 10, 11, 16, 17], "2008": 1, "insan": [1, 10, 15], "0024": 1, "fourth": [1, 3, 4, 6, 8, 9, 14, 15], "consid": [1, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "rt": [1, 6, 13], "task": [1, 2, 4, 5, 6, 7, 9, 10, 12], "somebodi": 1, "difficult": [1, 2, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16], "alan": 1, "respond": [1, 6, 11, 12], "ben": [1, 14], "longer": [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 15, 17], "multipl": [1, 2, 3, 4, 9, 10, 11, 12, 13, 16, 19], "divis": [1, 2, 7, 10], "awar": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14], "regard": [1, 11, 14], "definit": [1, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "abstract": [1, 2, 3, 4, 10, 11, 12, 14, 16], "onc": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "cameron": 1, "david": [1, 8, 17], "031": 1, "hi": [1, 3, 4, 8, 9, 10, 11, 13, 15, 17], "imposs": [1, 7, 8, 9, 10, 11, 14, 15], "occur": [1, 3, 4, 6, 9, 11, 13, 16, 17], "rule": [1, 2, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16], "strict": [1, 2, 17], "mathemat": [1, 2, 4, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "although": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "saw": [1, 3, 4, 5, 6, 8, 9, 12, 13, 14, 15, 16, 17], "school": [1, 2, 3, 4, 10, 11, 15, 16], "2002": [1, 4, 12, 19], "summaris": [1, 4, 7, 9, 10, 11, 12, 15], "cell": [1, 2, 3, 4, 6, 7, 12, 14, 16, 17], "tick": [1, 5, 13], "mark": [1, 3, 5, 6, 10, 13, 16], "correspond": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "hammer": 1, "home": [1, 3, 4, 5, 6, 10, 17], "unfortun": [1, 3, 4, 5, 6, 9, 10, 11, 12, 14, 15, 17], "checkmark": [1, 13, 14], "shock": [1, 4, 13], "hear": [1, 4, 12, 13, 15], "messier": [1, 13, 17], "classif": [1, 6], "scheme": [1, 4, 10, 14], "neat": [1, 6, 12, 15], "treat": [1, 3, 4, 6, 11, 12, 13, 15, 16, 17], "guidelin": [1, 12, 15], "intend": [1, 2, 4, 5, 9, 10, 12, 13, 14, 17], "likert": [1, 6, 9], "humbl": [1, 3, 5, 14], "bread": [1, 15, 17], "butter": [1, 17], "fill": [1, 4, 9, 13, 14, 15, 17], "hundr": [1, 7, 13, 14], "thousand": [1, 2, 3, 9, 11, 14], "odd": [1, 3, 4, 6, 7, 11, 12, 13, 14, 15, 17], "describ": [1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17], "pirat": 1, "freak": [1, 4], "awesom": [1, 5, 6, 9, 13, 17], "particip": [1, 2, 5, 6, 10, 11, 12, 13, 14, 16], "strongli": [1, 2, 6, 14, 15, 17], "clearli": [1, 2, 3, 4, 5, 9, 10, 12, 13, 14, 15, 16], "descriptor": 1, "necessari": [1, 2, 8, 9, 13, 14, 15], "handi": [1, 2, 3, 5, 7, 9, 10, 11, 12, 13, 15, 16], "limit": [1, 2, 3, 4, 9, 12, 13, 15, 16, 17], "prove": [1, 10, 11, 12, 14, 16], "On": [1, 3, 4, 5, 6, 7, 9, 10, 11, 13, 15, 16, 17, 19], "serious": [1, 2, 5, 9, 13], "act": [1, 2, 10, 12, 13, 16], "five": [1, 3, 4, 5, 9, 10, 13, 14], "quasi": [1, 19], "therebi": [1, 4, 15], "creat": [1, 2, 3, 4, 5, 7, 9, 10, 12, 13, 14, 15, 16, 20], "seen": [1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 14, 15, 16, 17], "simpli": [1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 17], "accur": [1, 2, 4, 10, 14], "weight": [1, 12, 13, 14, 15, 16], "bathroom": 1, "step": [1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 15], "off": [1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 16, 17, 20], "intellig": [1, 2, 4, 9, 10, 11], "mum": 1, "unreli": 1, "she": [1, 2, 10, 11, 13], "thick": 1, "moron": 1, "hold": [1, 5, 7, 9, 10, 12, 14, 16], "sack": 1, "potato": 1, "highli": [1, 2, 3, 4, 5, 6, 10, 11, 12, 13, 15, 17], "technic": [1, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16], "estim": [1, 4, 5, 8, 11, 12, 14, 16, 19], "bright": [1, 11], "her": [1, 4, 6, 9, 11, 13], "fluctuat": [1, 9], "wildli": [1, 9], "purpos": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "ensur": [1, 4, 9, 11, 13, 14, 17], "retest": 1, "date": [1, 2, 4, 11, 13, 14, 15, 16], "inter": 1, "rater": 1, "parallel": [1, 10, 16], "form": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17], "equival": [1, 2, 4, 6, 9, 11, 12, 13, 14, 15, 17], "perform": [1, 2, 5, 6, 7, 11, 13, 14, 15, 16], "function": [1, 2, 3, 4, 5, 9, 10, 12, 13, 14, 16, 17, 20], "ad": [1, 3, 4, 5, 7, 9, 11, 12, 13, 15, 16, 17], "possess": [1, 3, 10], "subject": [1, 4, 6, 9, 10, 13, 14, 16], "comput": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "cognit": [1, 10, 14, 19], "compon": 1, "exam": [1, 4, 11], "plu": [1, 3, 6, 9, 14, 15, 16], "piec": [1, 2, 3, 4, 5, 7, 9, 10, 11, 13, 17], "awai": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15], "normal": [1, 3, 4, 5, 6, 7, 10, 12, 19], "Then": [1, 3, 4, 5, 6, 7, 10, 12, 13, 14, 15, 16], "symbol": [1, 2, 3, 4, 5, 6, 10, 12, 15, 16], "denot": [1, 2, 4, 9, 10, 11, 12, 13, 14, 15, 16], "x_1": [1, 4, 9, 13, 16], "x_2": [1, 4, 9, 13, 16], "iv": [1, 8, 15], "dv": [1, 14, 15, 16], "behind": [1, 2, 3, 4, 5, 7, 11, 12, 13, 15, 16], "goe": [1, 2, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "properli": [1, 5, 9, 11, 12, 14, 15, 17, 20], "mislead": [1, 4, 5, 10, 11, 14], "never": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17], "aw": [1, 17], "altern": [1, 2, 10, 13, 14, 15, 16, 17, 19], "appeal": [1, 5, 11, 17], "modern": [1, 11, 14, 15], "exercis": [1, 5, 7, 10, 12, 13, 14, 15, 16, 17], "event": [1, 4, 9, 10, 11, 13, 16, 17], "kei": [1, 2, 3, 4, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17], "featur": [1, 2, 5, 15], "dure": [1, 2, 3, 4, 5, 6, 7, 16], "manipul": [1, 3, 6], "vari": [1, 3, 4, 9, 11, 12, 13, 15, 16], "causal": [1, 5, 11, 15], "kept": [1, 8, 9, 11, 14], "constant": [1, 4, 9, 13, 15], "balanc": [1, 4, 14, 17], "standard": [1, 2, 3, 5, 6, 9, 11, 12, 14, 15, 19], "solut": [1, 2, 4, 5, 6, 7, 9, 12, 13, 14, 15, 16], "randomis": [1, 11], "randomli": [1, 4, 9, 10, 12, 13, 14], "treatment": [1, 11, 14], "minimis": [1, 11, 13, 15], "elimin": [1, 5, 8, 11, 17], "unrealist": [1, 4], "grossli": [1, 15, 17], "uneth": [1, 10, 12], "smoke": 1, "lung": 1, "cancer": 1, "smoker": [1, 10], "proper": [1, 4, 6, 7, 8, 10, 11, 12, 15, 17], "poor": [1, 4, 11, 12, 13, 15], "diet": 1, "asbesto": 1, "mine": [1, 4, 5, 8, 9, 13], "whatev": [1, 2, 3, 4, 6, 7, 11, 12], "incid": [1, 5], "per": [1, 2, 5, 9, 13, 16], "se": [1, 9, 10, 13, 15], "meantim": [1, 14], "recal": [1, 4, 6, 10, 13, 14, 15, 16], "ethic": 1, "forc": [1, 2, 4, 5, 7, 10, 11, 12, 13, 17], "half": [1, 3, 4, 5, 6, 8, 9, 10, 11, 13, 15, 17], "unlik": [1, 3, 4, 5, 6, 7, 9, 11, 12, 13, 17], "respect": [1, 3, 4, 5, 8, 9, 10, 11, 13, 14, 15, 16], "confid": [1, 5, 9, 11, 13, 14, 15, 17], "murder": [1, 16], "broad": [1, 5, 6, 9, 13, 14, 15], "illustr": [1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17], "obtain": [1, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17], "crimin": [1, 11], "must": [1, 2, 3, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sampl": [1, 4, 5, 8, 9, 14, 15, 16, 19, 20], "solid": [1, 4, 9, 13, 14, 15, 16, 17], "investig": [1, 4, 14], "didn": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "artifactu": 1, "worth": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "aim": [1, 8, 9, 14, 15], "draw": [1, 4, 8, 9, 10, 12, 13, 14, 15, 16, 17], "isol": [1, 7], "neuropsycholog": 1, "damag": 1, "advantag": [1, 3, 4, 9, 10, 11, 15, 17], "abil": [1, 3, 7, 10, 11, 16], "invest": 1, "effort": [1, 3, 4, 6, 9, 11, 13, 14], "factor": [1, 3, 5, 6, 11, 13, 14, 15, 19], "valuabl": 1, "complement": [1, 4], "orient": [1, 5], "conceptu": [1, 2, 9, 10, 12, 14, 15, 16], "state": [1, 2, 3, 9, 10, 11, 12, 13, 14, 15, 17], "honesti": [1, 4], "notion": [1, 4, 5, 9, 14, 15], "rais": [1, 2, 4, 10, 14, 15, 17], "relev": [1, 3, 4, 9, 10, 11, 12, 14, 15, 16, 17], "quick": [1, 3, 4, 5, 11, 12, 13, 15], "guid": [1, 4, 10, 11, 13, 15, 17, 19], "tie": [1, 3, 14], "terribl": [1, 4, 9, 11, 13, 14, 15, 16], "except": [1, 2, 3, 4, 7, 8, 10, 11, 12, 13, 15, 17], "insofar": [1, 10, 12, 16], "appear": [1, 2, 3, 4, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "insid": [1, 2, 3, 4, 5, 6, 7, 10, 11, 13, 14, 15], "1000": [1, 4, 9, 10, 17], "essai": [1, 19], "spell": 1, "grammat": 1, "third": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17], "fewer": [1, 3, 5, 11, 12, 16], "conclud": [1, 9, 13, 14, 17], "skill": [1, 2, 3, 7, 8, 10, 14], "older": [1, 6], "superior": [1, 12, 17], "failur": [1, 17], "teas": 1, "apart": [1, 4, 12], "pattern": [1, 4, 6, 11, 12, 15, 16], "environ": [1, 2, 3, 7, 10, 11, 12, 13, 14], "drawn": [1, 5, 9, 10, 12, 13, 15], "subgroup": 1, "lack": [1, 5], "carri": [1, 17], "risk": 1, "populac": [1, 12], "threaten": 1, "popul": [1, 4, 9, 11, 13, 14, 15, 16, 19], "narrow": [1, 5, 6, 9, 10, 11], "phenomenon": [1, 10, 16], "concret": [1, 2, 4, 10, 11, 12, 14, 15, 16], "extrem": [1, 2, 4, 5, 7, 9, 12, 14, 15, 17, 20], "public": [1, 5, 9, 10, 17, 19], "toward": [1, 4, 9, 13, 14], "psychotherapi": 1, "visual": [1, 3, 4, 5, 7, 10, 13, 15, 16], "illus": 1, "spent": [1, 3, 4, 7, 9], "coupl": [1, 4, 6, 10, 14, 16, 17], "paragraph": [1, 4], "pose": [1, 14], "manner": 1, "lab": [1, 10], "learn": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "ridicul": [1, 13], "cheat": [1, 17], "stand": [1, 3, 4, 9, 13, 14, 16, 17], "theatr": 1, "300": [1, 5, 7], "cheater": 1, "deep": [1, 2, 3, 7, 9, 11, 12, 14], "stupid": [1, 2, 4, 5, 9, 10, 11, 12, 13], "pretend": [1, 4, 5, 9, 12, 13, 14, 16, 17], "gone": [1, 3, 13, 14, 20], "serv": [1, 3, 4, 7, 13, 15, 17], "experienc": [1, 14, 16], "hunch": 1, "evidentiari": [1, 10, 11], "pai": [1, 2, 4, 9, 11, 14, 16, 17], "attent": [1, 4, 5, 9, 10, 11, 14, 16, 17], "verbalis": 1, "criticis": [1, 10], "awri": 1, "uninform": 1, "crap": 1, "inspect": [1, 4, 5, 9, 10, 13, 14, 15], "gentli": 1, "substanti": [1, 4, 12, 13, 15], "untrain": 1, "polici": 1, "maker": 1, "proxi": 1, "politician": 1, "ignor": [1, 2, 3, 4, 6, 7, 9, 11, 13, 14, 15, 16, 17], "unfair": [1, 14], "scenario": [1, 4, 6, 9, 12, 13, 16, 17], "rigour": 1, "guarante": [1, 4, 10, 11, 13, 14, 15, 17], "easier": [1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 17], "eyewit": 1, "identif": [1, 19], "arrai": [1, 4, 6, 11, 12, 13, 14, 15, 16, 17], "suspect": [1, 3, 4, 5, 9, 10, 12, 13, 14, 15, 16], "shorter": [1, 10, 14], "crime": [1, 11], "wit": 1, "scare": [1, 5, 17], "polic": 1, "offic": [1, 15], "pressur": [1, 13], "fashion": [1, 2, 3, 4, 5, 10, 11, 14, 15, 16, 17], "unmeasur": [1, 15], "uncontrol": 1, "scope": [1, 4, 5, 9, 10, 12, 13, 14, 15], "vulner": [1, 4], "prevent": [1, 7, 9, 11], "swing": 1, "roundabout": 1, "shoe": [1, 10], "firmli": [1, 4, 5, 15], "foot": 1, "naturalist": 1, "By": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17], "lose": [1, 4, 5, 6, 8, 9, 15, 17], "wild": [1, 7], "reduc": [1, 5, 11, 13, 14, 15, 16], "bring": [1, 3, 13, 15, 16, 17], "gain": [1, 9, 12, 14, 15, 16], "accident": [1, 9, 13], "Be": [1, 12, 14, 17], "rough": [1, 4, 12, 13, 15], "ahead": [1, 4, 10, 11, 12, 14], "unavoid": [1, 8], "ref": [1, 11, 13], "differentialattrit": 1, "characteris": [1, 6, 14, 16], "23": [1, 3, 4, 9, 10, 13, 19], "uncertainti": [1, 5, 10, 13, 15], "decemb": 1, "2010": [1, 4, 5, 9, 11, 19], "februari": 1, "2011": [1, 5, 9, 11, 19], "queensland": 1, "flood": [1, 16], "januari": [1, 7, 17], "billion": 1, "dollar": [1, 2, 4, 9, 15], "kill": [1, 3, 5, 12, 13], "express": [1, 4, 5, 6, 10, 15, 16, 17], "temporarili": 1, "anti": [1, 14], "anxieti": [1, 13, 14, 16], "drug": [1, 2, 4, 6, 13, 14, 16], "administ": [1, 4, 6, 10, 12, 14, 16], "physiolog": [1, 16], "afterward": [1, 11, 12, 17], "lo": 1, "angel": 1, "earthquak": 1, "increas": [1, 4, 5, 9, 10, 13, 14, 15, 16], "tire": [1, 4], "children": 1, "rapidli": [1, 7], "trick": [1, 2, 3, 6, 7, 9, 12, 13, 15], "vocabulari": 1, "begin": [1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "declin": 1, "regardless": [1, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16], "uncommon": [1, 4, 6, 12, 13], "rel": [1, 2, 3, 4, 6, 9, 10, 13, 14, 15, 16, 17], "style": [1, 4, 5, 7, 10, 11, 12, 15], "session": 1, "familiar": [1, 2, 3, 4, 7, 12, 13, 14, 15, 16], "nervou": 1, "calm": 1, "auxiliari": 1, "mood": [1, 4, 14, 15, 16], "lead": [1, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15, 16], "despit": [1, 8, 11, 12, 14], "imbal": 1, "80": [1, 4, 6, 9, 10, 11, 12, 13, 15, 17, 19], "troubl": [1, 3, 4, 14], "danger": [1, 2, 10, 11, 14, 15, 17], "manag": [1, 2, 3, 9, 12], "repres": [1, 3, 5, 6, 7, 9, 10, 12, 15, 16, 17], "dan": [1, 4, 5, 9, 14, 15, 17], "tediou": [1, 2, 4, 7, 12, 13, 14, 15, 16], "drop": [1, 4, 11, 13, 15, 16, 17], "stop": [1, 2, 4, 5, 6, 7, 9, 13, 14, 16, 17], "moral": [1, 5, 12, 17], "oblig": [1, 12], "remind": [1, 5, 7, 12, 15, 16], "random": [1, 4, 5, 7, 9, 11, 12, 13, 15, 16, 19, 20], "remain": [1, 4, 5, 6, 8, 9, 11, 14, 15, 16, 17], "conscienti": 1, "toler": [1, 11, 12], "boredom": 1, "decreas": [1, 4, 10, 13, 15], "homogen": [1, 12, 13], "condit": [1, 6, 11, 13, 14, 17], "gave": [1, 2, 4, 6, 12, 13, 14, 15, 16, 17], "easili": [1, 4, 5, 6, 7, 10, 12, 13, 15, 16], "main": [1, 2, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 17], "unrepres": 1, "heterogen": 1, "dumb": [1, 2, 4, 17], "insult": [1, 10], "obedi": [1, 2], "anyon": [1, 3, 4, 7, 10, 11, 12, 14, 16, 17], "chitchat": 1, "dubiou": [1, 17], "co": [1, 5, 10, 13], "disobedi": 1, "left": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "alreadi": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "duti": 1, "shot": [1, 10, 11], "simplest": [1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16], "mail": 1, "repli": 1, "subsampl": 1, "chose": [1, 10, 11, 12, 15], "wasn": [1, 2, 5, 9, 11, 13, 15], "page": [1, 4, 19], "return": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15], "miss": [1, 5, 6, 10, 14, 16, 17], "fell": [1, 11], "invas": 1, "essenc": [1, 3, 10, 11, 17], "lost": [1, 4, 8, 15, 16], "variat": [1, 2, 4, 10, 13, 14, 15, 16, 17, 19], "subsequ": [1, 5, 16, 17], "advers": 1, "grade": [1, 4, 13, 16], "explan": [1, 6, 9, 11, 12, 15, 16, 17], "lucki": [1, 12, 14], "transferr": 1, "luck": [1, 8, 10, 15], "transfer": 1, "score": [1, 3, 6, 8, 10, 11, 12, 13, 14, 15, 16], "back": [1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "tall": 1, "taller": 1, "feedback": 1, "tri": [1, 2, 3, 4, 5, 6, 7, 11, 12, 14, 15, 16], "reinforc": [1, 13], "whenev": [1, 6, 9, 10, 11, 12, 13, 16], "trial": [1, 4, 9, 11, 14, 16, 17], "kahneman": [1, 12, 19], "tverski": [1, 12, 19], "intent": [1, 2, 4, 10, 11, 16, 17], "subtli": [1, 11, 13, 15, 16], "desir": [1, 5, 6, 7, 9, 10, 11, 13], "clever": [1, 4, 7, 9, 11, 12, 15, 19], "han": [1, 19], "1907": 1, "pfungst": [1, 19], "1911": [1, 19], "hothersal": [1, 19], "2004": [1, 5, 19], "hors": [1, 19], "becam": [1, 17], "famou": [1, 5, 10], "math": [1, 2, 3, 4, 9, 10, 12, 13, 14, 15, 16, 17], "theirs": 1, "doubl": [1, 14], "blind": [1, 14], "recognis": [1, 6, 7, 9, 10, 11, 13, 16], "ideal": [1, 4, 6, 7, 10, 11, 15, 17], "pull": [1, 4, 10, 12, 13, 14, 17], "interact": [1, 2, 3, 7, 11, 14], "credit": [1, 4], "avoid": [1, 3, 4, 7, 8, 11, 12, 13, 15, 17], "convei": [1, 4, 5, 11], "pygmalion": 1, "great": [1, 3, 4, 5, 6, 7, 9, 10, 13, 14, 15, 16], "occas": [1, 4, 5], "fulfil": 1, "prophesi": 1, "watch": [1, 4, 5, 6, 8, 9, 12, 15], "captur": [1, 2, 4, 5, 10, 11, 14, 17], "hawthorn": [1, 4, 5, 19], "alter": [1, 7, 9, 10, 11, 15], "factori": [1, 9, 14, 15], "outsid": [1, 5, 7, 9, 11, 15], "chicago": 1, "adair": [1, 19], "1984": [1, 19], "1920": [1, 12, 14], "light": [1, 2, 4, 11, 13, 15, 16, 17], "worker": [1, 17, 19], "product": [1, 4, 12, 16], "knew": [1, 3, 4, 7, 10, 13], "behav": [1, 3, 4, 6, 13], "adopt": [1, 6, 7, 9, 10, 11, 13, 17], "seek": [1, 11, 14], "hypothes": [1, 10, 12, 13, 14, 15, 17], "confirm": [1, 4, 10, 13, 15, 16], "exact": [1, 3, 4, 5, 10, 11, 13, 14, 15, 16, 19], "break": [1, 3, 4, 5, 6, 9, 13, 14, 15, 17], "destroi": [1, 9], "hypothesi": [1, 4, 8, 10, 14, 16, 19], "unnatur": [1, 15], "instruct": [1, 2, 7, 10, 12], "realist": [1, 7, 13, 16, 17], "apprehens": 1, "overli": 1, "chemic": 1, "inert": 1, "cure": [1, 13, 14, 15], "diseas": 1, "catch": [1, 6, 11, 15], "locat": [1, 3, 4, 5, 6, 9, 15], "wider": [1, 6, 9, 10, 15], "man": [1, 4, 17], "salari": 1, "upton": 1, "sinclair": 1, "couldn": [1, 4, 7, 14, 15, 16], "assumpt": [1, 4, 5, 6, 9, 10, 11, 17], "hilari": 1, "major": [1, 4, 5, 9, 11, 12, 13, 15], "immun": 1, "deceiv": 1, "flaw": [1, 2, 4, 11, 12], "hide": [1, 4, 5, 9, 10], "outright": 1, "unintention": 1, "slant": 1, "fabric": 1, "occasion": [1, 2, 3, 4], "clean": [1, 4, 5, 7, 16], "malici": 1, "profil": 1, "alleg": 1, "cyril": 1, "burt": 1, "andrew": 1, "wakefield": 1, "accus": [1, 12], "mmr": 1, "vaccin": 1, "autism": 1, "hwang": 1, "woo": 1, "suk": 1, "falsifi": 1, "stem": 1, "hoax": 1, "joke": [1, 12, 13], "eventu": [1, 2, 7, 9, 10, 11], "discov": [1, 2, 5, 9, 11, 12, 13, 14, 15, 16, 17], "discredit": 1, "piltdown": 1, "sokal": [1, 12, 19], "misrepresent": 1, "headlin": 1, "misrepres": 1, "dishonesti": 1, "due": [1, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "sophist": [1, 4, 17], "simpson": 1, "paradox": [1, 19], "inconveni": 1, "variant": 1, "detect": [1, 5, 13, 14, 15, 16], "misdesign": 1, "built": [1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 16, 17], "correctli": [1, 2, 4, 11, 12, 15, 16, 17], "wrongli": 1, "sneaki": [1, 10, 12, 13], "dabbl": 1, "add": [1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "materi": [1, 5, 9, 10, 14], "reader": [1, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17], "unintent": 1, "eras": 1, "hoc": [1, 15], "hypothesis": [1, 13], "softwar": [1, 2, 3, 4, 11, 13, 14, 15], "unacknowledg": 1, "invent": [1, 2, 4, 11, 12], "reanalys": 1, "acknowledg": [1, 16, 17], "censor": 1, "pervas": 1, "journal": [1, 11, 12, 19], "publish": [1, 2, 6, 9, 11, 12, 13, 17, 19], "submit": 1, "finnegan": 1, "wake": [1, 13], "internalis": 1, "accept": [1, 3, 4, 7, 8, 9, 10, 11, 12, 14, 15, 16], "friend": [1, 4, 5, 7, 9, 13, 14], "stuf": 1, "null": [1, 13, 14, 15, 16, 17], "ioannidi": [1, 19], "2005": [1, 5, 12, 19], "depress": [1, 14], "titl": [1, 3, 10, 12, 13, 14, 15, 16, 17], "k\u00fchberger": [1, 19], "2014": [1, 19], "blindingli": [1, 10], "gullibl": 1, "automat": [1, 5, 10, 12, 15, 16, 19], "stereotyp": 1, "meant": [1, 2, 3, 11, 13, 15], "comprehens": [1, 3, 4, 6, 10, 16], "volum": 1, "justic": 1, "tightli": [1, 9, 13], "briefli": [1, 3, 4, 7, 11, 12, 13, 14, 15, 17], "white": [1, 3, 5, 7, 10, 11, 15, 19], "coat": [1, 10], "minut": [1, 5, 14, 16], "search": [1, 3, 5, 6, 11, 14, 15], "dozen": [1, 4, 7, 9], "presidenti": 1, "indian": 1, "congress": 1, "1938": [1, 4], "sourc": [1, 2, 4, 5, 8, 10, 11, 14, 16, 20], "en": [1, 17], "wikiquot": 1, "org": [1, 10, 17], "wiki": [1, 17], "ronald_fish": 1, "awkward": [1, 4, 16], "oldest": [1, 12], "outdat": [1, 13, 14], "embarrass": 1, "wrote": [1, 2, 3, 6, 7, 10, 12, 13, 14, 15, 17], "revisit": [1, 3, 4, 9, 11, 15], "2018": 1, "karyotyp": 1, "ah": [1, 3, 4, 6, 12, 15], "daniel": [1, 4, 20], "giveawai": 1, "pronoun": 1, "default": [1, 3, 4, 5, 6, 10, 12, 13, 14, 15, 16, 17], "authori": 1, "voic": 1, "updat": [1, 10, 20], "besid": [1, 4, 9, 10, 13, 14, 15], "throughout": [1, 4, 5, 6, 8, 9, 11, 14, 15, 16, 17], "nicknam": 1, "strictli": [1, 4, 7, 11, 13, 14, 15, 17], "energi": 1, "heat": [1, 3], "cute": [1, 7], "annoyingli": [1, 12], "traditionalist": 1, "sigh": [1, 4, 14], "confus": [1, 3, 4, 5, 6, 9, 10, 11, 12, 14, 15, 16, 17], "afraid": [1, 8, 15], "fanci": [1, 4, 6, 7, 8, 15, 17], "dealt": [1, 3], "covari": [1, 4, 15, 19], "pass": [1, 4, 6, 7, 9, 12, 14, 15, 16, 17], "comfort": [1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 16], "argu": [1, 2, 3, 4, 6, 10, 11, 13, 15, 17], "disingenu": 1, "googl": [1, 2, 3], "scotsman": 1, "fallaci": 1, "emploi": 1, "ostens": 1, "whose": [1, 2, 4, 5, 9, 10, 11, 13, 16], "fraudul": 1, "childish": 1, "robot": [2, 4, 9, 12, 17], "roger": [2, 6], "zelazni": [2, 6], "download": 2, "soon": [2, 3, 7, 12, 14, 15, 16], "push": [2, 16], "button": [2, 9, 10, 14, 15], "goal": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17], "system": [2, 3, 5, 10, 11, 17, 19], "arguabl": [2, 10], "easiest": [2, 4, 5, 7, 9, 11, 12, 13, 14, 15, 16], "program": [2, 3, 5, 9, 14, 15], "defin": [2, 3, 4, 7, 9, 11, 12, 13, 14, 15, 16, 17], "anywai": [2, 4, 5, 7, 9, 12, 13, 14, 15, 16], "excel": [2, 3, 4, 6, 9, 12, 14, 15], "mindless": [2, 4, 5, 9], "repetit": [2, 9, 13, 14, 16], "pencil": [2, 14], "pedagog": [2, 7], "spreadsheet": [2, 5], "microsoft": 2, "furthermor": [2, 6], "auto": 2, "format": [2, 3, 4, 5, 7, 9, 10, 12, 13, 14, 15, 16], "habit": [2, 4, 5], "dug": 2, "hole": 2, "proprietari": 2, "commerci": [2, 14], "packag": [2, 3, 4, 6, 10, 11, 12, 13, 14, 15, 16], "bui": 2, "glossi": 2, "compani": [2, 9, 10, 19], "shadowi": 2, "husk": 2, "cheapli": 2, "full": [2, 3, 4, 5, 11, 13, 14, 15, 16, 17], "winc": 2, "licenc": 2, "staggeringli": 2, "tag": 2, "The": [2, 3, 5, 6, 7, 8, 19, 20], "model": [2, 3, 5, 9, 10, 11, 19], "suck": [2, 14, 17], "blame": [2, 3, 17], "shell": [2, 7], "free": [2, 8, 11, 12, 14, 15, 20], "exorbit": 2, "licens": [2, 20], "appreci": [2, 3, 17], "extens": [2, 3, 5, 11, 14], "modul": [2, 3, 4, 9, 13, 14], "wide": [2, 5, 10, 13, 14, 15, 16, 17], "extend": [2, 3, 5, 8, 9, 10, 14, 15, 16, 17], "freeli": 2, "avail": [2, 3, 4, 5, 7, 8, 10, 11, 14], "machin": [2, 3, 7, 8], "art": [2, 7, 8, 15], "simpler": [2, 4, 5, 7, 9, 13, 14, 15, 16], "expert": [2, 8], "psycholog": [2, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19], "research": [2, 4, 5, 6, 9, 10, 12, 13, 14, 15, 17, 19], "onlin": [2, 3, 5], "autom": [2, 15], "artifici": [2, 16], "vision": 2, "speech": 2, "recognit": 2, "quirk": [2, 3, 11], "stuck": [2, 17], "strength": [2, 5, 6, 10, 13, 15, 17], "outweigh": [2, 11], "ok": [2, 3, 4, 5, 6, 7, 9, 14, 15], "text": [2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 20], "presum": [2, 4, 5, 6, 12], "instructor": 2, "access": [2, 3, 4, 6, 10, 12, 14, 15, 20], "librari": [2, 4, 5, 6, 19], "availab": 2, "rich": [2, 3, 17], "ecosystem": [2, 3], "settl": [2, 4, 9], "frustrat": [2, 4, 11, 12, 13, 15], "varieti": [2, 5, 13, 14, 16], "anaconda": [2, 3], "conscious": 2, "numpi": [2, 3, 4, 6, 9, 10, 11, 12, 13, 14, 15], "scipi": [2, 3, 4, 9, 10, 11, 13, 14, 15, 16, 17], "pingouin": [2, 3, 4, 13, 14, 15, 16], "stabl": 2, "cloud": [2, 11], "interfac": 2, "colab": [2, 3], "upload": 2, "analyz": [2, 14], "sensit": [2, 4, 15], "doubt": [2, 4, 11, 15], "safer": [2, 4, 17], "enrypt": 2, "send": [2, 5, 7], "file": [2, 4, 6, 7, 10, 12, 13, 14, 15], "id": [2, 6, 7, 12, 13], "integr": [2, 7, 9], "develop": [2, 3, 4, 7, 10, 12, 14, 16], "web": 2, "jupyt": [2, 3, 5, 7, 12], "notebook": [2, 3, 5, 7, 12], "unless": [2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 15], "otherwis": [2, 3, 6, 7, 10, 11, 12, 13, 17], "reccomend": [2, 14], "assembl": 2, "usabl": [2, 6], "block": [2, 3, 8, 12, 13, 14], "copi": [2, 3, 6, 7, 13, 14, 15, 17], "past": [2, 3, 4, 6, 7, 10, 15, 17], "deviat": [2, 9, 12, 14, 15, 16, 19], "seri": [2, 3, 4, 5, 6, 7, 10, 12, 15], "plain": [2, 3, 5, 15, 17], "forgot": [2, 4], "caption": [2, 13, 14, 15, 16], "link": [2, 7, 11, 15], "elsewher": [2, 14, 15], "anywher": [2, 3, 4, 6, 10, 12], "delet": [2, 3, 5, 15], "complain": [2, 7, 17], "hit": [2, 9], "enter": [2, 4, 6, 13, 15], "execut": [2, 3, 4, 7], "screen": [2, 4, 6], "extract": [2, 3, 4, 9, 15, 16], "sum": [2, 3, 4, 6, 7, 9, 12, 13, 15, 17], "print": [2, 3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17], "respons": [2, 4, 6, 9, 10, 11, 12, 13], "syntaxerror": [2, 6], "cannot": [2, 3, 4, 5, 8, 9, 10, 11, 12, 14, 16, 17], "liter": [2, 4, 6, 9, 11, 12, 15, 16, 17], "spit": [2, 14, 15, 16], "messag": [2, 3, 7, 12, 17], "keyboard": 2, "countri": [2, 4, 10, 11], "upset": 2, "legitim": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12], "user": [2, 3, 5, 12, 13, 14, 16], "nonsens": [2, 5, 13, 17], "whing": [2, 4], "shift": [2, 5, 6, 9, 11, 14, 17], "press": [2, 12, 19], "mindlessli": 2, "autocorrect": 2, "automaton": [2, 4, 5], "overrul": 2, "absurdli": 2, "uptight": 2, "redund": 2, "howl": 2, "anger": 2, "character": 2, "notori": 2, "inflex": 2, "liber": [2, 17], "zealous": 2, "conserv": [2, 12, 14, 17], "indent": [2, 7, 15], "enforc": [2, 17], "iron": [2, 10], "fist": 2, "lazi": [2, 3, 9, 10, 13, 14], "associ": [2, 4, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19], "arithmet": 2, "background": [2, 3, 5, 9, 10, 13], "extra": [2, 4, 6, 10, 15], "straight": [2, 4, 5, 11, 12, 13, 15, 16], "primari": [2, 9], "input": [2, 3, 4, 6, 7, 15, 16], "output": [2, 4, 5, 6, 7, 11, 12, 13, 14, 15, 16], "333": [2, 3, 4, 6], "57": [2, 4, 9, 13, 15], "61": [2, 4, 5, 10, 11, 14, 15, 16], "3477": 2, "integ": [2, 3, 4, 5, 7, 10], "modulu": 2, "ago": [2, 3, 15], "listen": [2, 11, 13], "n": [2, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19], "th": [2, 4, 12, 13, 14, 15, 16], "squar": [2, 3, 4, 6, 9, 10, 11, 12, 13, 15, 17, 19, 20], "cube": [2, 4], "4th": 2, "equat": [2, 4, 9, 10, 12, 13, 14, 15, 16, 17], "625": 2, "inde": [2, 4, 5, 8, 9, 10, 13, 14, 15, 16], "bonu": 2, "save": [2, 4, 6, 7, 12, 13, 14, 15, 16], "interim": [2, 17], "taught": [2, 10, 12, 13, 15, 17], "bedma": 2, "racket": 2, "xponent": 2, "ivis": 2, "ultipl": 2, "ddition": 2, "ubtract": 2, "continu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17], "enclos": 2, "bracket": [2, 3, 4, 6, 12, 15], "resolv": [2, 13], "unsur": 2, "measur": [2, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 19], "delv": 2, "harri": 2, "potter": 2, "350": [2, 13], "sale": [2, 3], "scene": 2, "rang": [2, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17], "properti": [2, 3, 4, 5, 6, 9, 10, 14, 15], "contain": [2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16], "direct": [2, 5, 6, 10, 13, 15, 19], "sign": [2, 3, 4, 6, 12, 13], "quest": 2, "strategi": [2, 3, 8, 12, 14, 15, 16, 17], "royalti": 2, "2450": 2, "revenu": 2, "verifi": [2, 4, 16], "straightforward": [2, 3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16], "reassign": 2, "psychotrop": 2, "donat": 2, "550": 2, "3000": 2, "overwrit": [2, 7], "sweet": [2, 3, 7, 13], "impli": [2, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "hourli": 2, "wage": [2, 4], "dismal": 2, "1968": 2, "dictionari": [2, 6, 12], "pow": 2, "decim": [2, 3, 6, 14, 15], "speak": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], "convert": [2, 3, 4, 5, 7, 10, 11, 12, 13, 14, 15, 16, 17], "float": [2, 4], "fyi": 2, "quickli": [2, 3, 5, 9, 14, 16], "content": [2, 3, 4, 7, 9, 11, 12, 14], "loui": 3, "sullivan": 3, "alongsid": 3, "build": [3, 6, 10, 12, 14, 15, 16, 17], "broadli": [3, 4, 6], "mechan": [3, 6, 7, 9, 11, 13, 14, 16], "navig": [3, 7], "frame": [3, 10, 12, 13, 14, 16], "formula": [3, 4, 9, 12, 13, 16, 17], "document": [3, 7, 9, 10, 15], "avenu": 3, "assist": 3, "foundat": [3, 9, 10, 11, 19], "tackl": [3, 10], "charact": [3, 4, 6, 7, 11, 13, 14], "script": [3, 5], "seeker": 3, "1415": 3, "lover": 3, "7183": 3, "keeper": 3, "539539450000001": 3, "code": [3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 20], "readabl": [3, 4, 5, 12], "explanatori": 3, "command": [3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16], "peculiar": [3, 16], "flexibl": [3, 11], "welcom": 3, "newcom": 3, "kindli": [3, 5, 12], "reinvent": 3, "wheel": 3, "achiev": [3, 4, 5, 6, 7, 9, 10, 13, 15, 16], "shoulder": 3, "cuebal": 3, "webcom": 3, "xkcd": 3, "handful": 3, "somewher": [3, 4, 9, 11, 14, 17], "boil": 3, "hang": [3, 6, 7], "enviro": 3, "recommend": [3, 13, 15, 17], "concert": 3, "suit": [3, 5, 9, 12, 13], "click": [3, 9, 10, 14, 15], "dedic": 3, "matplotlib": [3, 4, 5, 9, 10, 11, 13, 14, 15, 16], "statmodel": [3, 15], "scikit": 3, "earli": [3, 7, 11, 13, 14], "snippet": 3, "virtual": 3, "browser": 3, "nameerror": 3, "traceback": [3, 4, 7], "er": [3, 12], "luckili": [3, 4, 5, 6, 7, 13, 15], "resort": [3, 14], "cumbersom": [3, 6], "portion": 3, "renam": [3, 4, 5, 6], "height": [3, 5, 9], "abbrevi": [3, 4, 5, 17], "thu": [3, 4, 5, 9, 12, 13, 14, 15, 16], "np": [3, 4, 6, 9, 10, 11, 12, 13, 14, 15], "conveni": [3, 6, 10, 11, 12, 13, 15], "recogn": [3, 7], "stick": [3, 4, 6, 7, 12, 14, 15, 16], "sake": [3, 4, 5, 6, 12, 13, 15], "fun": [3, 4, 15, 20], "why_you_gotta_be_so": 3, "loos": 3, "advic": [3, 5, 6, 7, 11, 12, 13, 14, 16], "mental": [3, 12, 13, 15], "familar": 3, "dwell": 3, "peak": [3, 5, 9], "ill": 3, "advisedli": 3, "info": [3, 5], "0x111b6a4d0": 3, "op": [3, 17], "kage": 3, "__init__": 3, "py": [3, 7, 10, 11, 12, 13, 14, 16], "ge": 3, "ython3": 3, "support": [3, 7, 11, 13, 15], "dir": [3, 4], "stage": [3, 5, 6, 8, 10, 11, 14], "anymor": [3, 4, 9, 13, 14, 16], "rid": 3, "undo": [3, 5], "forev": [3, 10], "del": 3, "reset": [3, 6], "harm": 3, "unus": 3, "comma": 3, "separ": [3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 16], "store": [3, 4, 5, 6, 7, 9, 10, 12, 13, 15, 16], "ipynb": 3, "digress": [3, 6, 7, 9, 11, 12, 15], "excit": [3, 4, 6, 7, 14, 17, 20], "window": [3, 11, 15], "maco": 3, "linux": 3, "root": [3, 4, 9, 10, 12, 13, 15], "folder": [3, 10, 11], "directori": 3, "drive": [3, 8], "ethan": [3, 4, 5, 12, 13, 14, 16, 20], "pythonbook": [3, 4, 5, 6, 12, 13, 14, 15, 16, 17], "lsp": 3, "pdf": [3, 4, 9, 10, 12, 13, 14], "unix": 3, "mac": 3, "spirit": [3, 4], "backslash": 3, "forward": 3, "slash": 3, "tutori": [3, 13], "commonli": [3, 4, 6, 9, 12, 13, 14], "bear": [3, 10, 11, 15], "booksal": 3, "row": [3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17], "willi": [3, 6], "nilli": [3, 6], "haven": [3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 17], "suffic": [3, 6, 14], "column": [3, 4, 5, 12, 13, 14, 15, 16, 17], "github": [3, 15], "parenthes": [3, 12], "nicer": [3, 14, 15], "versatil": 3, "loop": [3, 10, 15], "calcul": [3, 5, 6, 9, 11, 12, 13, 17, 19], "to_csv": 3, "desktop": [3, 5], "my_fil": 3, "export": [3, 5], "bunch": [3, 4, 6, 7, 9, 10, 12, 13, 14, 15], "fit": [3, 5, 9, 14, 16, 19], "dataset": [3, 4, 10], "z": [3, 4, 14, 15], "outcom": [3, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 17], "unexpect": 3, "quotat": [3, 6], "forgotten": [3, 12, 13, 16], "depressingli": 3, "hello": 3, "aka": [3, 15], "int": [3, 7, 10], "14": [3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17], "foibl": 3, "storag": 3, "4392": 3, "cow": 3, "75": [3, 4, 5, 9, 13, 15, 16, 17], "pig": 3, "21": [3, 4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 19], "hen": 3, "animals_tot": 3, "anim": [3, 12, 19], "103": [3, 7, 10, 14, 19], "face": [3, 4, 5, 9, 11, 14, 15, 17], "fraction": [3, 11], "234": [3, 6], "000003": [3, 13], "behavior": [3, 15, 19], "binari": [3, 10, 13], "round": [3, 5, 8, 12, 13, 14, 15, 16, 17], "3333333333333333": 3, "ten": [3, 11], "0001": 3, "1001": 3, "infinit": [3, 9, 10, 13], "repeat": [3, 6, 9, 10, 12, 13, 14, 15, 16, 17], "30000000000000004": 3, "mathematician": [3, 9, 10, 12], "blissfulli": 3, "unawar": [3, 11], "halfwai": 3, "nearest": 3, "neares": 3, "_": [3, 6, 7, 10, 12, 13, 14, 15, 16], "musn": 3, "tangent": 3, "esoterica": 3, "odditi": [3, 11], "conceiv": [3, 11], "000000000000001": 3, "0000000000000001": 3, "ugh": [3, 4, 6], "yup": [3, 12, 16], "64": [3, 4, 12, 13, 15, 19], "processor": 3, "probabi": [3, 4, 7], "0000000000000009": 3, "alright": [3, 7], "p": [3, 4, 7, 9, 12, 13, 14, 15, 16, 19], "cat": [3, 7, 14], "appl": [3, 4, 6, 7, 13], "supercalifragilisticexpialidoci": [3, 7], "confusingli": 3, "42": [3, 4, 6, 7, 10, 13, 15, 16], "8374": 3, "87": [3, 10, 12, 16, 19], "gift": 3, "paperweight": 3, "doorstop": 3, "weapon": 3, "am": [3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 20], "stringss": 3, "catcatcatcatcat": 3, "whet": 3, "appetit": 3, "galaxi": 3, "IN": 3, "split": [3, 4, 6, 15], "l": [3, 7, 19], "r": [3, 4, 5, 9, 12, 13, 14, 16, 19, 20], "join": [3, 10], "ax": [3, 4, 5, 9, 10, 11, 13, 14, 15, 16], "xlxoxnxgx": 3, "xtxixmxex": 3, "xaxgxox": 3, "xixnx": 3, "xax": 3, "xgxaxlxaxxxyx": 3, "xfxaxrx": 3, "xaxwxaxi": 3, "replac": [3, 5, 6, 7, 10, 13, 16], "suburb": 3, "a_long_time_ago_in_a_galaxy_far_far_awai": 3, "fantast": [3, 20], "die": [3, 9], "christma": 3, "movi": [3, 15], "pronounc": 3, "conson": 3, "gif": 3, "opportun": [3, 4, 17], "arug": 3, "typeerror": [3, 7], "126": [3, 15], "minimum": [3, 4, 10, 13, 14], "arguement": [3, 5], "shop": 3, "pear": [3, 6, 7], "banana": [3, 6, 7], "65": [3, 4, 12, 13, 15, 16, 17, 19], "mix": [3, 7, 15, 19], "309": [3, 19], "enamor": 3, "realiz": [3, 7, 13, 14, 20], "strang": [3, 4, 6, 13, 15], "zeroeth": 3, "europ": [3, 17, 19], "floor": 3, "backward": 3, "stumbl": 3, "attribut": [3, 4, 6, 9, 11, 15, 16], "o": [3, 7, 11, 12, 19], "toi": [3, 4, 6, 11, 13, 16], "unknown": [3, 9, 11, 13, 15], "len": [3, 4, 5, 6, 7, 10, 12, 13, 14, 15], "programm": 3, "es": [3, 4, 13], "mutabl": 3, "immut": [3, 11], "shopping_list": 3, "shopping_tupl": 3, "grape": [3, 6], "appropri": [3, 4, 6, 9, 10, 11, 13, 15], "funni": [3, 4, 5, 10, 13, 15, 16], "truli": [3, 4, 6, 12, 15], "syntax": [3, 4, 5, 6], "pair": [3, 4, 9, 10, 14, 15], "entri": [3, 4, 12, 14, 16], "pet": 3, "my_pet": 3, "d2": [3, 17], "sleep": [3, 4, 5, 7, 14, 15], "dislik": 3, "loud": [3, 7], "nois": 3, "plan": [3, 14, 16], "my_week": 3, "todo": 3, "feed": [3, 4, 6, 12, 13], "fix": [3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 19], "demonstr": [3, 7, 9, 10, 11, 12, 14], "owl": 3, "bar": [3, 4, 9, 10, 13, 14, 15, 16], "burrow": 3, "barn": 3, "screech": 3, "spot": [3, 7], "finch": 3, "goldfinch": 3, "crossbil": 3, "redpol": 3, "grosbeak": 3, "sparrow": 3, "song": [3, 11], "throat": 3, "captain": 3, "jack": 3, "bird": 3, "mishmosh": 3, "bedfellow": 3, "judgi": 3, "element": [3, 4, 6, 7, 10, 11, 12, 13, 15, 17], "uniqu": [3, 4, 5, 10, 11, 12, 14, 16], "favorit": [3, 4], "color": [3, 4, 9, 10, 11, 12, 13, 14, 15], "our_color": 3, "red": [3, 10, 12, 15], "orang": [3, 4, 5, 13, 15], "yellow": 3, "sentenc": [3, 7, 14, 17], "wonder": [3, 4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17], "v": [3, 4, 5, 10, 12, 13, 19], "u": [3, 10], "blank": [3, 9], "space": [3, 5, 9, 15], "exclam": 3, "toe": 3, "remeb": 3, "lowercas": [3, 7, 16], "__add__": 3, "__class__": 3, "__contains__": 3, "__delattr__": 3, "__dir__": 3, "__doc__": 3, "__eq__": 3, "__format__": 3, "__ge__": 3, "__getattribute__": 3, "__getitem__": 3, "__getnewargs__": 3, "__gt__": 3, "__hash__": 3, "__init_subclass__": 3, "__iter__": 3, "__le__": 3, "__len__": 3, "__lt__": 3, "__mod__": 3, "__mul__": 3, "__ne__": 3, "__new__": 3, "__reduce__": 3, "__reduce_ex__": 3, "__repr__": 3, "__rmod__": 3, "__rmul__": 3, "__setattr__": 3, "__sizeof__": 3, "__str__": 3, "__subclasshook__": 3, "capit": [3, 7, 12], "casefold": 3, "center": [3, 6, 13, 14, 16], "encod": [3, 16], "endswith": 3, "expandtab": 3, "format_map": 3, "isalnum": 3, "isalpha": 3, "isascii": 3, "isdecim": 3, "isdigit": 3, "isidentifi": 3, "islow": 3, "isnumer": 3, "isprint": 3, "isspac": 3, "istitl": 3, "isupp": 3, "ljust": 3, "lstrip": 3, "maketran": 3, "partit": 3, "removeprefix": 3, "removesuffix": 3, "rfind": 3, "rindex": 3, "rjust": 3, "rpartit": 3, "rsplit": 3, "rstrip": 3, "splitlin": 3, "startswith": [3, 7], "strip": [3, 5, 7, 15], "swapcas": 3, "translat": [3, 4, 5, 7, 9, 10, 11, 12, 13, 15, 16, 20], "zfill": 3, "yike": [3, 4, 6, 7], "__": 3, "front": [3, 13, 15], "meddl": 3, "1231": 3, "__class_getitem__": 3, "__delitem__": 3, "__iadd__": 3, "__imul__": 3, "__reversed__": 3, "__setitem__": 3, "append": [3, 4, 7, 10, 11, 15], "insert": [3, 10, 16], "pop": [3, 8, 9, 10, 11, 13, 17], "attributeerror": [3, 4], "113": [3, 10], "friendli": [3, 4, 12], "342": 3, "zebrafish": 3, "hei": [3, 5, 10], "cool": [3, 4, 7, 11, 12, 13, 14], "retriev": 3, "mishmsoh": 3, "layer": 3, "enorm": [3, 9], "progress": [3, 7, 9, 12], "depth": [3, 9, 10], "345": [3, 19], "432": 3, "575": 3, "43": [3, 12, 13, 14, 15, 16], "32": [3, 4, 5, 11, 12, 13, 14, 16], "565": 3, "233": [3, 14], "865": 3, "45645": 3, "45": [3, 4, 5, 9, 13, 14, 15, 16], "332": 3, "453": [3, 16], "346": 3, "324": [3, 4, 7], "fifth": 3, "seventh": [3, 8], "17": [3, 4, 5, 6, 7, 9, 10, 13, 14, 15, 16, 19], "primarili": [3, 8, 13, 16], "crucial": [3, 7, 10], "wrangl": [3, 5, 14], "353": 3, "minim": 3, "nasti": [3, 7, 15], "bicker": 3, "chiefli": 3, "unpleas": 3, "yeah": [3, 8, 9, 15], "haha": [3, 4, 6], "compact": [4, 5, 13, 15], "understood": [4, 9, 12], "oppos": [4, 5, 9, 13, 15, 16], "inferenti": [4, 9, 10, 11, 17], "synonym": 4, "load": [4, 5, 7, 12, 13], "afl_finalist": [4, 5], "afl_margin": [4, 5], "githubusercont": [4, 5, 6, 12, 13, 14, 15, 16, 17], "ethanwe": [4, 5, 6, 12, 13, 14, 15, 16, 17], "footbal": [4, 5, 14], "leagu": [4, 5], "afl": [4, 5, 13], "win": [4, 5, 8, 9, 10, 11, 13], "margin": [4, 5, 6, 11, 12, 13, 16, 17], "176": [4, 5], "game": [4, 5, 8, 9, 10, 14], "season": [4, 5, 10], "400": [4, 5, 7, 8], "team": [4, 5, 9, 10], "200": [4, 7, 12], "period": [4, 5, 12], "1987": [4, 5], "56": [4, 5, 9, 12, 13, 15, 19], "31": [4, 5, 6, 10, 12, 13, 15, 16, 17], "171": 4, "172": [4, 15], "38": [4, 5, 13, 14, 15, 19], "173": 4, "29": [4, 5, 6, 9, 11, 13], "174": 4, "175": [4, 19], "pictur": [4, 5, 8, 9, 10, 11, 14, 15, 17], "histogram": [4, 9, 10, 13, 14, 15, 16, 17], "histplot": [4, 5, 9, 10, 11, 13, 14, 15, 16], "graph": [4, 9, 10, 14, 19], "represent": [4, 15, 16], "frequenc": [4, 5, 6, 9, 10, 11, 12, 14, 16], "despin": [4, 5, 9, 10, 11, 12, 13, 14, 15, 16], "athough": 4, "gist": [4, 9], "condens": [4, 12], "li": [4, 9, 10, 11, 15, 16, 17], "frac": [4, 9, 10, 12, 13, 14, 15, 16, 17], "183": 4, "36": [4, 11, 14, 15], "excus": [4, 15], "notat": [4, 9, 10, 11, 13, 14, 15, 16, 17], "attach": [4, 6, 9, 10, 11, 15], "subscript": [4, 12, 13, 16, 17], "x_n": 4, "x_i": [4, 10, 13, 15], "x_3": [4, 9], "x_4": [4, 9], "x_5": [4, 9], "x_": [4, 13, 15, 16], "summat": [4, 12, 14, 16], "scriptstyl": 4, "shorten": [4, 11, 12], "sum_": [4, 10, 12, 13, 14, 15, 16], "clarifi": 4, "box": [4, 9, 10, 11, 12, 15], "circumst": [4, 11, 14], "vector": [4, 6, 10, 12, 13, 15], "6213": 4, "dtype": [4, 6, 12], "int64": [4, 6, 12], "whatsoev": [4, 13], "slice": [4, 7], "ado": 4, "sudden": 4, "amongst": 4, "rout": 4, "30113636363637": 4, "ascend": [4, 6], "mathbf": 4, "sixth": 4, "sort_valu": [4, 6, 14], "sorted_margin": 4, "84": [4, 10, 13, 14, 15, 19], "165": 4, "117": [4, 10], "123": 4, "136": [4, 16], "peek": [4, 5, 6, 17], "centr": [4, 5, 6, 15, 17], "graviti": [4, 17], "smaller": [4, 10, 12, 13, 14, 15, 16, 17], "nomin": [4, 5, 12, 13, 16, 17], "scale": [4, 5, 6, 9, 10, 12, 13, 14, 15, 16, 19, 20], "ordin": [4, 13], "interv": [4, 5, 6, 13, 14, 15, 17], "ratio": [4, 5, 9, 12, 13, 14, 15, 16, 17, 20], "asymmetr": 4, "bodi": 4, "drag": 4, "tail": [4, 5, 6, 9, 11, 13], "bob": 4, "incom": [4, 15], "kate": 4, "jane": 4, "58": [4, 6, 11, 13, 16], "bill": [4, 10], "043": [4, 15], "750": 4, "500": [4, 5, 11], "mock": 4, "septemb": [4, 7], "senior": 4, "commonwealth": 4, "bank": 4, "sidewai": 4, "craig": [4, 12, 19], "jame": [4, 15], "chief": 4, "economist": [4, 10], "trade": [4, 13, 15], "arm": [4, 10], "commsec": 4, "mortgag": 4, "rent": 4, "oblivi": 4, "market": 4, "cba": 4, "war": [4, 8], "doomsay": 4, "intern": [4, 15], "household": 4, "citi": [4, 9, 12, 17], "nationwid": 4, "san": [4, 16], "francisco": 4, "york": [4, 19], "auckland": 4, "vancouv": 4, "analyst": [4, 5, 7, 17], "led": [4, 8, 14], "bottom": [4, 5, 9, 10, 13, 15], "demographia": 4, "um": [4, 13, 14, 17], "seriou": [4, 6, 11, 14], "discrep": [4, 12, 13, 17], "domest": 4, "mid": [4, 6], "asset": 4, "earn": 4, "wealthiest": 4, "ralph": 4, "norri": 4, "multi": 4, "million": [4, 10], "packet": 4, "underst": 4, "quantit": [4, 5], "organis": [4, 6, 8, 12, 14, 16], "elementari": [4, 9], "insight": 4, "lender": 4, "vest": 4, "swath": 4, "secur": [4, 5], "loan": 4, "outlier": [4, 5, 15], "belong": [4, 6, 10, 12, 14], "action": [4, 7, 11, 15, 17], "dri": 4, "suspici": [4, 5, 8, 11, 13, 15], "trickier": [4, 9, 11, 12, 13, 14, 16], "robust": [4, 15, 17, 19], "remedi": [4, 13, 14], "discard": 4, "smallest": [4, 9, 11, 13, 14, 15], "preserv": [4, 6, 15, 16, 17], "regular": [4, 6, 7, 13, 14, 16], "famili": [4, 14, 15], "span": [4, 5, 6], "tempt": [4, 5, 11, 12, 13, 14, 15, 16, 17], "rest": [4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16], "dataset2": 4, "trim_mean": 4, "dataset3": 4, "head": [4, 5, 6, 9, 10, 11, 12, 13, 14, 15, 17], "finalist": [4, 5], "melbourn": [4, 5], "carlton": [4, 5], "essendon": [4, 5], "geelong": [4, 5], "16": [4, 6, 7, 9, 10, 12, 13, 14, 15], "collingwood": [4, 5], "west": [4, 5], "coast": [4, 5], "22": [4, 9, 10, 11, 12, 13, 14, 15, 16], "glad": 4, "value_count": [4, 5, 12, 14], "39": [4, 5, 10, 11, 14, 15, 16], "north": [4, 5], "27": [4, 5, 6, 14, 15, 16, 19], "26": [4, 5, 6, 13, 14, 16], "adelaid": [4, 5, 9, 10, 17], "sydnei": [4, 5, 9], "brisban": [4, 5], "st": [4, 5, 10, 15, 19], "kilda": [4, 5], "western": [4, 5], "bulldog": [4, 5], "port": [4, 5, 10], "richmond": [4, 5], "fremantl": [4, 5], "max": [4, 5, 10, 13, 15], "freq": [4, 12], "bet": [4, 8, 9, 11, 15, 17], "consol": [4, 7], "prize": [4, 13], "modal": 4, "spread": [4, 5], "minu": [4, 12, 13, 14, 16], "maximum": [4, 9, 10, 13], "116": [4, 5], "min": [4, 5, 12, 13, 15], "omit": [4, 9, 11, 13, 14], "quantifi": [4, 10, 11, 14, 17], "worst": [4, 17], "unduli": 4, "110": [4, 10], "iqr": 4, "25th": [4, 5], "quantil": [4, 6, 10, 13, 15], "75th": [4, 5], "percentil": [4, 5, 6, 10, 12], "10th": [4, 8], "50th": 4, "folk": [4, 10, 11, 17], "quarter": 4, "slowli": [4, 11, 14], "52": [4, 12, 13, 14, 16, 19], "irritatingli": [4, 15], "acronym": [4, 10], "ambigu": [4, 11, 12, 13, 17], "aad": 4, "unambigu": [4, 9, 13], "mbox": [4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "labori": [4, 10, 14], "x_bar": 4, "ab": [4, 6, 11, 15], "elegantli": 4, "eleg": [4, 5, 15], "ordinari": [4, 13, 15], "statsmodel": [4, 10, 14, 15, 16], "pandas_mad": 4, "statsmodels_mad": 4, "var": [4, 10, 11, 13, 14], "clearer": [4, 5, 13, 14, 16], "shortli": [4, 7, 9, 11, 15, 16], "376": [4, 6], "817": [4, 19], "96": [4, 10, 13, 14, 15], "\u3164\u3164": 4, "burn": [4, 12, 13], "reveal": [4, 10, 12, 15], "fortun": [4, 5, 9, 11, 12, 13, 15, 17], "405": 4, "broken": [4, 11, 12, 14, 17], "typo": [4, 5, 7, 12], "idiot": [4, 15, 17], "tini": [4, 7, 9, 10, 11, 12, 13, 14, 15], "switch": [4, 5, 8, 9, 14, 16, 17], "empti": [4, 5, 7, 14, 17], "squared_error": 4, "675": 4, "9718168904958": 4, "679": 4, "834512987013": 4, "hm": [4, 8, 13, 14, 15], "outlin": [4, 9, 10, 13, 16], "initi": [4, 5, 12, 14], "paramet": [4, 9, 11, 12, 13, 14, 15], "pvarianc": 4, "population_vari": 4, "sample_vari": 4, "9718168904959": 4, "mysteri": [4, 10, 13], "novel": [4, 14], "hint": [4, 11, 12, 15], "quantiti": [4, 9, 11, 12, 13, 14, 15, 16], "uninterpret": 4, "accord": [4, 11, 13, 15, 16, 17], "footi": [4, 5, 14], "unit": [4, 6, 15], "rmsd": 4, "neatli": 4, "nobodi": 4, "clue": 4, "01": [4, 10, 11, 12, 13, 14, 15, 16, 17], "sd": [4, 9, 10], "std": [4, 5, 13, 14, 15, 16], "dev": [4, 13, 14], "sqrt": [4, 9, 10, 12, 13, 14, 15], "stdev": [4, 10, 13], "hat": [4, 10, 12, 13, 14, 15, 16], "sigma": [4, 9, 10, 13, 14, 15], "073636359108274": 4, "thumb": [4, 15], "symmetr": [4, 6, 13], "bell": [4, 9, 10], "shape": [4, 5, 6, 10, 12, 15], "shade": [4, 5, 9, 11], "distanc": [4, 14, 15], "unreason": [4, 6, 8, 13, 16, 17], "previous": [4, 6, 12, 13, 14, 15, 16], "07": [4, 16], "4826": 4, "manual": [4, 5, 7, 12, 13, 14, 15], "91074326085924": 4, "curv": [4, 5, 9, 10, 13], "minor": [4, 9, 10, 11], "attract": [4, 5], "hood": [4, 5, 16], "pyplot": [4, 5, 9, 10, 11, 13, 14, 15, 16], "plt": [4, 5, 9, 10, 11, 13, 14, 15, 16], "url": [4, 5, 10], "skewdata": 4, "df_skew": 4, "subplot": [4, 5, 9, 10, 13, 14, 15, 16], "figsiz": [4, 5, 9, 10, 13, 14, 15], "ax1": [4, 5, 9, 10, 13, 14], "loc": [4, 5, 6, 10, 13, 14, 16], "negskew": 4, "binwidth": [4, 9, 10, 11, 13], "02": [4, 11, 12, 15, 17], "ax2": [4, 5, 9, 10, 13, 14], "noskew": 4, "ax3": [4, 5, 13], "posskew": 4, "set_titl": [4, 5, 9, 10, 11, 13, 15], "xticklabel": [4, 10], "yticklabel": [4, 10], "tick_param": [4, 9, 10, 15], "asymmetri": [4, 11], "panel": [4, 5, 9, 10, 13, 14, 15, 16], "axi": [4, 6, 9, 10, 15], "skipna": 4, "7804075289401982": 4, "pointi": 4, "file1": 4, "kurtosisdata": 4, "file2": 4, "kurtosisdata_ncurv": 4, "df_kurtosi": 4, "mu": [4, 9, 10, 13, 14, 16], "linspac": [4, 9, 10, 12, 13, 14, 15], "norm": [4, 9, 10, 13, 14, 17], "platykurt": 4, "mesokurt": 4, "leptokurt": 4, "twinx": [4, 9, 10], "lineplot": [4, 9, 10, 11, 12, 13, 14], "40000": 4, "black": [4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17], "flat": [4, 10], "set_xlim": [4, 13], "set_ylim": [4, 10, 13, 16], "25000": 4, "assess": [4, 11, 13, 14, 15, 16], "fischer": 4, "pearson": [4, 11, 12, 14, 15, 19], "10109718805638757": 4, "06434955786516161": 4, "0643495578651616": 4, "bia": [4, 10, 11, 13, 15, 17, 19], "eyebal": 4, "dramat": [4, 9], "000000": [4, 5, 12, 13, 15], "301136": [4, 5], "073636": [4, 5], "750000": [4, 5, 13], "500000": [4, 5, 12], "quartil": [4, 5], "blowout": 4, "operationalis": [4, 9, 10, 11, 15], "exce": 4, "132": [4, 6, 15], "cryptic": 4, "clinical_trial_data": 4, "df_clintrial": 4, "therapi": [4, 14, 16], "mood_gain": [4, 14, 16], "placebo": [4, 14, 16], "anxifre": [4, 14, 16], "shed": 4, "nan": [4, 13, 14, 15, 16], "883333": 4, "533854": 4, "100000": [4, 13], "425000": 4, "850000": 4, "300000": [4, 13], "800000": 4, "grumpi": [4, 5, 14, 15], "70": [4, 9, 10, 11, 12, 13, 16, 17, 19], "shockingli": [4, 7, 14], "159": 4, "016": [4, 15], "standardis": [4, 13, 16], "lone": 4, "gotten": [4, 11, 14, 17, 20], "pseudo": 4, "z_i": 4, "transform": [4, 10, 14, 15, 16, 17], "zscore": [4, 15], "subtleti": [4, 5], "heurist": [4, 12, 13], "extravers": 4, "extravert": 4, "grumpier": [4, 15], "unusu": [4, 5, 7, 12, 15, 16, 17], "sport": 4, "heart": [4, 9, 10, 12, 15], "fictiti": [4, 10, 14], "infant": 4, "son": [4, 10, 15], "affect": [4, 11], "nerd": [4, 7, 15], "parenthood": [4, 5, 15], "dan_sleep": [4, 5, 15], "baby_sleep": [4, 5, 15], "dan_grump": [4, 5, 15], "59": [4, 5, 9, 10, 11, 13, 15], "91": [4, 5, 10, 14, 15], "66": [4, 5, 6, 10, 13, 15], "71": [4, 5, 9, 13, 14, 15, 16], "55": [4, 5, 9, 11, 13, 14, 15], "67": [4, 5, 9, 13, 14, 15], "00000": 4, "965200": 4, "049200": 4, "71000": 4, "015884": 4, "074232": 4, "04967": 4, "011492": 4, "840000": 4, "250000": [4, 13], "41": [4, 5, 6, 11, 13, 15], "292500": 4, "030000": 4, "950000": 4, "740000": 4, "635000": 4, "070000": 4, "graphic": [4, 10, 13, 14, 16], "depict": [4, 5, 9, 10, 13, 15, 16], "grump": [4, 5, 15], "sharei": [4, 9, 10, 13, 15], "suptitl": [4, 9, 10], "readership": [4, 9, 12, 16], "slept": [4, 15], "03": [4, 11, 12, 13, 14, 16], "sleepi": [4, 15], "scatterplot": [4, 13, 15], "set_xlabel": [4, 15, 16], "set_ylabel": [4, 15, 16], "sleep_scatter1": 4, "stronger": [4, 11, 12, 15, 17], "neater": 4, "predict": [4, 8, 9, 11, 12, 13, 14, 15, 16, 19], "sleep_scatter2": 4, "sleepier": 4, "sleep_scatt": 4, "fig2": 4, "explicit": [4, 6, 10, 11, 12, 15, 16], "tradition": [4, 10, 13, 14, 16], "r_": [4, 12, 14], "corr": [4, 14, 15], "cov": 4, "rneg": 4, "val": [4, 10, 13, 14, 15], "enumer": [4, 10, 13, 14, 15, 16], "multivariate_norm": 4, "y_i": [4, 15], "cross": [4, 12, 13, 16, 17], "unrel": 4, "magnitud": [4, 11, 14], "contribut": [4, 14, 15, 16, 19], "oversimplif": [4, 13], "_x": 4, "_y": 4, "usag": [4, 13], "9033840374657269": 4, "matrix": [4, 6, 15, 19], "627949": [4, 15], "903384": [4, 15], "098408": [4, 15], "565964": [4, 15], "010434": [4, 15], "076479": [4, 15], "exagger": [4, 13], "benchmark": 4, "judg": [4, 11, 13, 15], "deem": [4, 11, 15], "moder": [4, 13, 14], "neglig": [4, 13, 17], "index": [4, 5, 6, 10, 12, 14, 15, 16, 17], "anscomb": [4, 19], "quartet": 4, "816": [4, 15], "y1": [4, 9, 13, 14], "04": [4, 10, 11, 13, 15, 16], "y2": [4, 9, 13, 14, 15], "74": [4, 10, 13, 15], "77": [4, 10], "y3": [4, 12, 14], "73": [4, 9, 10, 13, 14, 16, 19], "x4": 4, "y4": [4, 12], "76": [4, 13, 15], "47": [4, 6, 13, 14, 16, 19], "89": [4, 10], "81642051634484": 4, "8162365060002427": 4, "8162867394895982": 4, "8165214368885031": 4, "spectacularli": 4, "shortcom": [4, 16], "linear": [4, 6, 14], "reward": [4, 9], "scribbl": [4, 7, 15], "rankcorr": 4, "receiv": [4, 5, 6, 13, 16], "40": [4, 6, 9, 10, 11, 12, 13, 16], "79": [4, 10, 13, 15], "85": [4, 10, 15, 17], "88": [4, 10, 14, 16], "9094019658612525": 4, "regplot": [4, 5, 10, 15], "ci": [4, 10, 13, 15, 16], "set_linestyl": 4, "lowest": [4, 6, 12, 15, 17], "laziest": 4, "semest": [4, 7, 13], "specifii": [4, 10], "ranked_hour": 4, "ranked_grad": 4, "9999999999999999": 4, "spearman": 4, "rho": 4, "skip": [4, 7, 12, 13, 14, 15], "clariti": [4, 9], "gloss": [4, 10, 14], "safest": 4, "unhelp": [4, 10], "nanmean": 4, "nanmedian": 4, "nanpercentil": 4, "nanmax": 4, "nanmin": 4, "nansum": 4, "nanstd": 4, "16496580927726": 4, "peski": 4, "var1": 4, "var2": 4, "var3": 4, "niggl": [4, 6], "demonin": 4, "demoni": 4, "ddof": 4, "nancorr": 4, "explor": [4, 7, 13, 16], "parenthood2": 4, "introducd": 4, "morn": [4, 9, 15], "976923": 4, "114494": 4, "152174": 4, "020409": 4, "046821": 4, "851574": 4, "285000": 4, "460000": 4, "200000": 4, "785000": 4, "610000": 4, "eight": [4, 14], "614723": 4, "903442": 4, "076797": 4, "567803": 4, "058309": 4, "005833": 4, "handili": 4, "untru": 4, "dropna": 4, "639498": 4, "899515": 4, "061329": 4, "586561": 4, "145558": 4, "068166": 4, "reliabl": [4, 10, 15], "paranoid": [4, 15], "cue": [4, 15], "rubbish": [4, 15], "reang": 4, "beast": 4, "wish": [4, 6], "touch": [4, 5, 6, 10], "death": [4, 5], "tragedi": 4, "josef": 4, "stalin": 4, "potsdam": 4, "1945": 4, "950": 4, "soviet": [4, 9, 19], "repress": [4, 19], "1937": 4, "ellman": [4, 19], "infam": 4, "deni": 4, "multitud": 4, "incomprehens": [4, 12], "visualis": [4, 5, 9, 15], "cold": [4, 10], "summon": 4, "saturdai": [4, 7], "lifetim": [4, 17], "gulag": 4, "dull": 4, "dread": 4, "stomach": 4, "chill": 4, "stalinist": 4, "combin": [4, 5, 6, 7, 14, 16, 17], "wipe": 4, "woman": 4, "aliv": [4, 10], "atroc": 4, "audienc": [4, 5, 12], "sole": [4, 5, 12], "non": [4, 5, 6, 7, 9, 10, 11, 12, 14, 15], "competit": [4, 8, 11, 12, 14], "greek": [4, 11, 15], "letter": [4, 6, 7, 10, 11, 12, 15, 16], "analogu": [4, 14], "alphabet": [4, 16], "pi": [4, 9], "numb": 4, "pain": [4, 5, 12, 13, 14, 16], "dot": [4, 5, 13, 15, 16], "thorough": [4, 10], "net": [4, 17], "au": [4, 17], "09": [4, 9, 11, 13, 14, 15, 16], "3021480": 4, "htm": 4, "subfield": 4, "grappl": 4, "cope": 4, "picki": [4, 5], "refresh": [4, 15], "flip": [4, 9, 11, 12], "loss": [4, 5, 8, 10], "coolest": 4, "introduct": [4, 6, 8, 12, 14, 17, 19], "tack": [4, 6], "caution": [4, 6], "warrant": [4, 13], "meaningfulli": [4, 11], "pearsonr": 4, "spearmanr": 4, "mcar": 4, "ungrammat": 4, "edward": 5, "tuft": 5, "exploratori": 5, "stylis": 5, "redraw": [5, 15], "snow": 5, "cholera": 5, "map": [5, 9, 11, 15], "circl": 5, "outbreak": 5, "pump": 5, "1854": 5, "simplic": [5, 6, 13, 14, 15], "street": 5, "viewer": 5, "casual": 5, "dr": [5, 13], "arrang": [5, 10, 14], "Such": 5, "twofold": 5, "struggl": [5, 17], "customis": 5, "futur": [5, 10, 11, 17], "paint": 5, "canva": 5, "onto": [5, 6, 7, 9, 11, 14, 15, 16], "stroke": 5, "throw": [5, 7, 9, 15], "painter": 5, "particularli": [5, 11, 14, 15, 16], "headach": [5, 16], "metaphor": 5, "inadvert": 5, "oil": 5, "watercolour": 5, "analog": [5, 11, 13, 14, 16, 17], "brush": [5, 13], "creativ": [5, 11], "custom": [5, 10, 12], "eas": [5, 13], "greatli": 5, "simplifi": [5, 10, 12, 16, 17], "sooner": 5, "dip": [5, 7], "stencil": 5, "impressionist": 5, "cubism": 5, "artist": 5, "impos": [5, 7, 12], "overarch": 5, "aesthet": 5, "constraint": [5, 9, 12, 13, 14, 15, 16, 17], "coher": [5, 6], "platform": 5, "specialis": [5, 7], "fibonacci": 5, "customari": [5, 7], "digit": [5, 7], "bezo": 5, "chart": [5, 9], "variabl": [5, 7, 9, 10, 12, 13, 14, 15, 16, 17, 19], "bump": [5, 15], "dive": [5, 10], "tidli": 5, "pleas": [5, 10, 13, 15], "poster": 5, "font_scal": 5, "adjust": [5, 10, 12, 13, 14, 17], "set_context": 5, "seven": [5, 14], "decent": [5, 7], "resourc": [5, 7], "contradictori": [5, 11], "site": [5, 10, 12, 13, 14, 16], "stackoverflow": [5, 15], "coder": 5, "copiou": 5, "consul": 5, "cramp": 5, "room": [5, 11], "breath": 5, "flourish": 5, "elbow": 5, "usus": 5, "happiest": 5, "meet": [5, 7, 11, 13], "grab": [5, 15], "impress": [5, 7, 9, 11, 13, 15, 16], "bin": [5, 6, 11], "leftmost": 5, "downsid": 5, "cram": [5, 12, 13], "overwhelm": [5, 11], "relatedli": 5, "120": [5, 10, 15], "clutter": 5, "width": [5, 9], "whisker": 5, "median": [5, 14, 17], "interquartil": 5, "vertic": [5, 9], "squat": 5, "horizont": [5, 9, 15], "distant": 5, "177": 5, "327": [5, 6], "aha": 5, "riddl": [5, 8, 10], "phase": 5, "wast": [5, 9, 12, 17], "chunk": [5, 6, 7, 9], "obnoxi": 5, "star": [5, 11, 15], "player": 5, "underpow": 5, "poorli": [5, 15], "streak": [5, 8], "turf": 5, "annihil": 5, "met": [5, 7, 12, 13, 15], "exclud": [5, 15], "weren": [5, 10, 12, 17], "tip": [5, 10], "disregard": [5, 16], "massacr": 5, "shame": [5, 7, 11], "pertain": [5, 16], "judgment": [5, 15], "aflsmall2": 5, "afl2smal": 5, "4291": 5, "4292": 5, "4293": 5, "4294": 5, "4295": 5, "summar": 5, "stripplot": 5, "jitter": 5, "overlap": [5, 11], "favor": 5, "insur": 5, "violinplot": 5, "densiti": [5, 13, 20], "thin": 5, "kernal": 5, "techin": 5, "underli": [5, 6, 9, 11, 16], "unknow": 5, "glanc": [5, 13], "curvi": 5, "allevi": [5, 10], "mini": 5, "spine": [5, 10, 13], "set_vis": [5, 10, 13, 14], "overlai": [5, 9, 20], "potenti": [5, 9, 12, 15], "obscur": [5, 11], "conceal": 5, "indici": 5, "prepar": [5, 10, 13], "diamond": [5, 12], "outier": 5, "boxprop": 5, "facecolor": 5, "edgecolor": [5, 13], "medianprop": 5, "whiskerprop": 5, "capprop": 5, "correl": [5, 11, 13, 14, 16, 19], "latter": [5, 12, 15], "suspicion": 5, "slope": [5, 15], "faint": 5, "transluc": 5, "df2": [5, 9, 13], "to_fram": 5, "reset_index": [5, 6, 14, 16], "inplac": [5, 14], "barplot": [5, 9], "illeg": 5, "rotat": 5, "stare": [5, 15], "insist": [5, 8, 17], "makeov": 5, "yum": 5, "brag": 5, "savefig": 5, "tweak": [5, 7, 10], "bbox_inch": 5, "tight": [5, 17], "dark": 5, "png": 5, "enjoi": 5, "waaaai": 5, "craft": 5, "introducton": 5, "configur": 5, "ala": 5, "enemi": 5, "steep": 5, "payoff": [5, 9], "hardest": [5, 10], "edit": [5, 19, 20], "harken": 5, "matlab": 5, "inspir": 5, "launceston": 5, "de": 5, "facto": 5, "demolit": 5, "kardinia": 5, "park": 5, "strung": 5, "lopsid": 5, "modest": [5, 10, 16, 17], "186": 5, "garden": [6, 7, 13], "confin": 6, "philosoph": [6, 8, 19], "laid": [6, 17], "tractor": 6, "honestli": [6, 9, 12, 13, 15, 17], "realiti": 6, "cetera": 6, "motiv": [6, 8, 10, 11, 12, 13, 15], "essenti": [6, 7, 10, 11, 12, 13, 15, 17, 19], "dump": [6, 7, 14, 16], "scratch": 6, "surfac": [6, 16], "grasp": [6, 7, 9, 14], "lightli": [6, 16], "flick": [6, 14], "nine": 6, "divd": 6, "552": 6, "624": 6, "431": 6, "925": 6, "662": 6, "634": 6, "635": 6, "memori": [6, 10, 13, 15, 17, 19], "aaaand": 6, "python": [6, 7, 11], "score_data": 6, "particp": [6, 14], "my_row": 6, "my_column": 6, "scroll": 6, "endlessli": 6, "tolist": 6, "father": 6, "tv": [6, 9], "night": 6, "transcrib": 6, "dialogu": [6, 8], "speaker": 6, "utter": 6, "saniti": 6, "upsi": 6, "daisi": 6, "tombliboo": 6, "makka": 6, "pakka": 6, "pip": [6, 12, 15], "onk": 6, "ee": 6, "oo": 6, "crosstab": [6, 12, 14, 16, 17], "col_0": 6, "satisfi": [6, 9, 10, 11, 12, 13, 14, 16, 17], "rowtot": 6, "coltot": 6, "tab": 6, "worthwhil": 6, "header": [6, 15], "hoo": 6, "boi": [6, 7, 11, 12, 16], "fascin": 6, "procedur": [6, 9, 10, 11, 14, 15, 16, 17, 19], "div": 6, "smallish": [6, 7, 15], "younger": 6, "proposit": [6, 14], "dinosaur": 6, "midpoint": 6, "endpoint": 6, "trivial": [6, 13, 15], "opinion_strength": 6, "shini": 6, "opinion_direct": 6, "tidi": [6, 12], "discret": [6, 9, 10, 11, 12], "gather": [6, 9], "coars": 6, "grain": 6, "edg": [6, 11], "categoris": 6, "deleg": 6, "667": 6, "942": 6, "boundari": [6, 11], "94": [6, 13, 15, 19], "roughli": [6, 9, 10, 17], "0th": 6, "33rd": 6, "66th": 6, "100th": 6, "qcut": 6, "q": [6, 14, 15, 19], "999": 6, "shrunk": [6, 11], "unequ": [6, 13], "carv": [6, 14], "inher": [6, 17], "drawback": [6, 7, 11, 13, 15], "advis": 6, "777298672345782376823578287355": 6, "7773": 6, "listnam": 6, "step_siz": 6, "trip": 6, "spinach": 6, "fruit": [6, 13], "strawberri": 6, "df_test": 6, "df_control": 6, "df_old": 6, "df_youngish": 6, "old_and_slow": 6, "old_and_slow_control": 6, "df_sort": 6, "df_cake": 6, "cake": [6, 7, 17], "df_cakes_flip": 6, "batch": [6, 8], "sorri": [6, 8, 12, 15, 16], "first_thre": 6, "last_two": 6, "sucker": 6, "df_join": 6, "squish": 6, "stack": [6, 14, 15], "dataram": 6, "accomplish": [6, 7], "concat": [6, 9], "df_concaten": 6, "undertak": 6, "layout": 6, "alcohol": 6, "caffein": 6, "capac": [6, 10, 13, 15], "wmc": 6, "recruit": [6, 14], "inflenc": 6, "drugs1": 6, "melt": 6, "df_long": 6, "id_var": 6, "reaction": 6, "wmc_alcohol": 6, "wmc_caffein": 6, "wmc_no": 6, "rt_alcohol": 6, "rt_caffein": 6, "rt_no": 6, "488": 6, "236": 6, "371": 6, "607": 6, "349": 6, "643": 6, "226": 6, "412": 6, "684": 6, "206": 6, "252": 6, "262": 6, "439": 6, "wide_to_long": 6, "sadli": [6, 12, 13, 15], "bid": 6, "stubnam": 6, "sub": 6, "j": [6, 7, 8, 10, 12, 14, 19], "sep": 6, "suffix": 6, "prefix": 6, "stub": 6, "intak": 6, "alchol": 6, "underscor": [6, 7], "wmc_": 6, "rt_": 6, "prof": 6, "deserv": [6, 15], "idex": 6, "multiindex": 6, "thow": 6, "recip": [6, 7, 17], "disast": 6, "pivot": 6, "swivel": 6, "track": [6, 7, 9, 14, 16], "df_wide": [6, 14], "492": 6, "230": [6, 9, 16], "464": 6, "690": 6, "259": [6, 13], "486": [6, 17], "305": 6, "686": 6, "273": [6, 15], "645": 6, "240": 6, "498": 6, "voil\u00e0": 6, "resembl": [6, 12], "convers": [6, 7, 8, 9, 11], "reassembl": 6, "df_wmc": 6, "col": 6, "df_rt": 6, "df_gender": 6, "chain": 6, "drill": 6, "flatten": [6, 7, 13, 14], "hangman": 6, "curli": [6, 9], "brace": [6, 19], "anova": [6, 13, 15], "regress": [6, 10, 12, 13, 14], "predictor": [6, 13, 14, 15, 16], "rational": [6, 15], "trademark": 6, "patent": 6, "pend": 6, "dream": 7, "vertigo": 7, "william": [7, 11, 13], "gibson": 7, "super": [7, 17], "via": [7, 12, 13, 16], "prompt": [7, 13], "albeit": [7, 12, 14], "beginn": [7, 14], "fool": 7, "chop": 7, "disciplin": [7, 9, 12], "patient": [7, 13], "forth": [7, 16], "workspac": 7, "imag": 7, "conjunct": [7, 14, 16], "reproduc": [7, 10, 14, 16], "suddenli": 7, "comb": 7, "recreat": 7, "hasn": [7, 15, 16], "reus": [7, 14, 15], "adapt": [7, 13, 15, 17, 20], "inevit": [7, 9, 14], "string": [7, 15], "log": [7, 11, 12, 15], "myrawdata": 7, "mydataanalysi": 7, "comment": [7, 13, 14, 19], "benefit": [7, 14], "mynewdatanalaysi": 7, "email": [7, 13], "colleagu": [7, 17], "1986": [7, 10, 19], "puzzl": 8, "bitter": 8, "hill": [8, 10, 19], "arthur": 8, "welleslei": [8, 10], "duke": 8, "wellington": 8, "carriag": 8, "ride": 8, "countrysid": 8, "companion": 8, "croker": [8, 10], "victori": [8, 9], "gambler": 8, "justifi": [8, 10, 11, 12, 17], "gambl": [8, 9], "paid": 8, "reckon": 8, "wcc": 8, "cwc": 8, "wwc": 8, "ccc": 8, "sequenc": [8, 9, 10], "scorecard": 8, "Their": 8, "yyi": 8, "jerk": [8, 10, 13], "dissect": [8, 12], "pitch": 8, "philosophi": [8, 11, 19], "brief": [8, 9, 11, 13, 17], "13th": 8, "justif": [8, 10, 11], "hume": [8, 17], "nelson": 8, "goodman": 8, "divers": 8, "lewi": 8, "carrol": 8, "lunch": [8, 10, 15], "theorem": [8, 12, 13, 15], "escap": [8, 11, 16], "dialog": 8, "implicit": [8, 15], "welles": [8, 10], "revis": [8, 17, 19], "factual": 8, "inconsist": [8, 11, 17], "hallmark": 8, "sherlock": 8, "holm": [8, 15, 19], "inabl": 8, "ultim": [8, 11, 17, 20], "underpin": [8, 9, 11, 14, 16, 17], "bartlebi": 8, "344": 8, "god": [9, 11, 12, 15], "twilight": 9, "lock": 9, "stamp": 9, "herald": 9, "oct": 9, "tough": 9, "premier": 9, "poll": [9, 10], "unpopular": 9, "labor": 9, "administr": 9, "vote": [9, 10, 12], "cent": 9, "unremark": [9, 12], "entail": 9, "nsw": 9, "voter": [9, 10, 12], "alp": 9, "feder": 9, "elect": 9, "elector": 9, "commiss": 9, "610": 9, "795": [9, 13, 19], "609": 9, "98": [9, 10, 15], "4610795": 9, "005": [9, 14, 15, 17], "4610025": 9, "83": [9, 10, 15], "everybodi": 9, "enterpris": 9, "lion": 9, "doctrin": 9, "branch": 9, "coin": [9, 11, 12], "roll": 9, "dice": 9, "card": [9, 11], "shuffl": [9, 12, 16], "deck": [9, 12], "lotteri": 9, "probabilist": [9, 10], "commission": 9, "spous": 9, "rig": [9, 10, 13, 17], "neq": [9, 11, 12, 13, 15, 16], "consensu": 9, "walk": [9, 11, 12], "soccer": 9, "arduino": 9, "arsen": 9, "milan": 9, "ideolog": [9, 11, 17], "subscrib": 9, "talli": 9, "n_h": 9, "number_of_flip": 9, "number_of_head": 9, "00": [7, 9, 12, 15], "69": [9, 12, 13, 19], "53": [9, 11, 13, 14, 15], "dampen": 9, "nutshel": 9, "infin": [9, 10], "rightarrow": [9, 10], "infti": [9, 10], "converg": 9, "patienc": 9, "simul": [9, 10, 12, 15, 17], "drew": [9, 10, 15], "fluke": [9, 13], "frequentist_prob": 9, "def": [7, 9, 10, 15], "coin_flip": 9, "uniform": 9, "arang": [9, 11, 13, 15], "cumsum": 9, "proportion_head": 9, "run1": 9, "run2": 9, "run3": 9, "run4": 9, "frequentist_probability_fig": 9, "unfold": 9, "undesir": [9, 12], "pocket": 9, "land": 9, "wear": 9, "meteorologist": 9, "rain": [9, 17], "novemb": 9, "2048": 9, "forbid": [9, 17], "tomorrow": [9, 11], "subjectivist": 9, "steadili": 9, "traction": 9, "decad": [9, 11], "flavour": 9, "ration": 9, "agent": 9, "formalis": [9, 10, 13, 16], "disadvantag": [9, 10, 11, 15], "alien": 9, "uncomfort": [9, 14], "obei": 9, "pragmatist": 9, "relax": 9, "tower": [9, 11], "20th": [9, 11, 14, 17], "vehement": 9, "oppon": 9, "impenetr": 9, "jungl": 9, "arrest": 9, "1922": [9, 11, 12, 19], "paul": 9, "meehl": [9, 19], "potent": 9, "steril": 9, "intellectu": [9, 12], "rake": 9, "merri": 9, "ravish": 9, "maiden": 9, "viabl": 9, "offspr": 9, "1967": [9, 19], "devoid": 9, "entertain": [9, 13], "territori": 9, "promis": [9, 10, 15, 17], "orthodox": [9, 11], "notwithstand": [9, 17], "andrei": 9, "kolmogorov": [9, 13], "pant": 9, "disturb": 9, "jean": 9, "tracksuit": 9, "sadder": 9, "mister": 9, "grant": [9, 11], "wardrob": 9, "sad": [9, 12], "trite": 9, "grei": 9, "eventnam": 9, "wrap": [9, 12, 13, 15, 16, 17], "cup": [7, 9], "cap": 9, "chi": [9, 11, 13, 14, 17, 19, 20], "skull": 9, "proce": [9, 15], "167": 9, "theta": [9, 11], "sim": [9, 11, 12, 13, 14], "2022036": 9, "binom": [9, 11], "pmf": 9, "pixel": 9, "exp": 9, "exponenti": 9, "k": [9, 11, 12, 13, 14, 15, 16, 19], "20220358121717247": 9, "repeatedli": [9, 17], "n1": [9, 13], "n2": [9, 13, 16], "r1": [9, 16], "r2": [9, 15], "101": [7, 9, 10], "p1": [9, 15, 16], "p2": [9, 15, 16], "df1": 9, "set_xtick": 9, "honour": 9, "gaussian": 9, "quietli": 9, "smooth": [9, 15], "weather": 9, "pleasant": 9, "spring": 9, "varianc": [9, 10, 12, 13, 19], "labelleft": 9, "labeltop": 9, "labelright": 9, "labelbottom": [9, 10, 15], "linestyl": [9, 10, 13, 15], "normals2": 9, "widen": 9, "shrink": 9, "twini": 9, "irrespect": [9, 10], "sdnorm": 9, "sdnorm2": 9, "x_fill1": 9, "001": [9, 11, 12, 13, 14, 15, 16], "x_fill2": 9, "y_fill1": 9, "y_fill2": 9, "fill_between": [9, 12, 13], "alpha": [9, 10, 11, 12, 13, 14, 15, 16], "admittedli": [7, 9, 10, 12, 15], "distort": [9, 10, 15, 16], "portabl": 9, "989422804014327": 9, "thermomet": 9, "dart": 9, "board": 9, "99998": 9, "9998": [9, 15], "liar": 9, "numref": 9, "heavier": [9, 13], "tdist": 9, "degfre": [9, 13], "chi2": [9, 12, 17], "sane": 9, "fdist": 9, "degfree1": 9, "degfree2": 9, "dist": [9, 13, 14], "37495055": [], "94156658": [], "96302133": [], "20757735": [], "20647971": [], "61603773": [], "49750524": [], "72068372": [], "70983379": [], "20401518": [], "freedom": [9, 10, 11, 12, 13, 14, 15, 17], "exploit": 9, "normal_a": 9, "normal_b": 9, "normal_c": 9, "chi_square_data": 9, "scaled_chi_square_data": 9, "t_3": 9, "normal_d": 9, "chi_square_3": 9, "chisquar": [9, 12], "chi_square_20": 9, "scaled_chi_square_3": 9, "scaled_chi_square_20": 9, "f_3_20": 9, "unsightli": 9, "df_1": 9, "df_2": [9, 14, 15], "versu": [9, 12, 13, 14], "coverag": 9, "exhaust": [9, 10, 15], "bookshelf": 9, "hurt": [9, 10, 15], "skim": [9, 14, 16], "academ": [9, 10, 12, 17, 19], "redescrib": [9, 13], "increasingli": [9, 10, 11], "controversi": 9, "passeng": 9, "injur": 9, "crash": 9, "calculu": 9, "int_a": 9, "dx": [], "larri": 9, "moe": 9, "huei": 9, "dewei": 9, "louie": 9, "boringli": 9, "highlight": [10, 14, 17], "concis": 10, "witter": 10, "prelud": 10, "phone": 10, "finit": [7, 10], "incomplet": 10, "ring": 10, "terrestri": 10, "destin": 10, "wellselei": 10, "subset": [10, 15, 16], "bag": 10, "chip": 10, "shake": 10, "shook": 10, "member": [10, 12, 14, 16], "br": 10, "dismiss": 10, "miracl": 10, "narrowest": 10, "stratifi": 10, "subpopul": 10, "strata": 10, "effici": 10, "schizophrenia": 10, "schizophren": 10, "forgiv": [7, 10], "simplif": [10, 11, 12], "oversampl": 10, "snowbal": 10, "techniqu": [10, 11, 14], "contact": [10, 11], "tran": 10, "intrus": 10, "network": 10, "consent": 10, "relianc": [10, 17], "restrict": [10, 11, 13, 15], "srs1": [], "unproblemat": 10, "mondai": [7, 10, 14], "wealthi": 10, "industrialis": 10, "exclus": [10, 11, 17], "grown": 10, "coffer": 10, "overflow": [10, 12, 15], "gold": 10, "courtesi": 10, "blah": 10, "border": 10, "critiqu": 10, "rehash": 10, "truism": 10, "rambl": 10, "thorni": 10, "tendenc": [10, 12], "rant": 10, "ecologist": 10, "realm": 10, "iq": [10, 15, 16], "operation": [10, 11], "grid": [10, 15], "ax0": [10, 13], "10000": [10, 11], "transax": [10, 15, 16], "fontsiz": 10, "fontweight": 10, "va": 10, "106": 10, "107": [10, 19], "72": [10, 13, 14, 16], "encourag": [10, 13, 20], "poulat": 10, "iq_10": 10, "iq_100": 10, "iq_10000": 10, "104": [7, 10], "43867269618876": [], "06550343462831": [], "102": [7, 10], "68503725167218": [], "973649420035605": [], "91296994766488": [], "215898680015181": [], "jacob": 10, "bernoulli": 10, "founder": [10, 17], "1713": 10, "stigler": [10, 19], "men": 10, "himself": [10, 13], "wander": 10, "passag": [10, 17], "condescend": 10, "rewritten": [12, 14], "proof": [10, 11, 14], "somehow": [10, 11], "maynard": [10, 19], "keyn": [10, 19], "famous": [10, 11], "tempestu": 10, "storm": 10, "ocean": 10, "1923": [10, 19], "abandon": 10, "astyp": 10, "iq_1": 10, "93": [10, 12, 13, 15], "replic": [10, 11], "iq_2": 10, "105": [7, 10, 17], "112": 15, "86": [13, 15], "118": 10, "125": [10, 13, 15, 16], "122": [10, 16], "121": [10, 15], "109": [10, 12], "138": 15, "amass": 10, "iq_samp_dist": 10, "sample_mean": [10, 13], "119": [10, 15], "iq_max": 10, "highest": [10, 17], "140": 10, "sample_max": 10, "inaccur": 10, "recalcul": 10, "clm": 10, "sem": [10, 13], "subax": 10, "plotsampl": 10, "ramp": 10, "beta": [10, 11, 15, 16], "triangular": 10, "50000": 10, "sharex": 10, "devat": 10, "poison": [10, 13], "piri": 10, "south": 10, "industri": 10, "town": 10, "smelter": 10, "whyalla": 10, "steel": 10, "refineri": 10, "local": [10, 15], "gunpoint": 10, "shall": [10, 13, 14, 16, 17], "intut": 10, "cromul": 10, "bare": [10, 11, 13, 14, 15], "sample_sd": 10, "dash": [10, 15, 17], "axvlin": [10, 13], "opt": [12, 13, 14, 16], "miniconda3": [12, 13, 14, 16], "env": [12, 13, 14, 16], "pythonbook3": [12, 13, 14, 16], "lib": [12, 13, 14, 16], "python3": [12, 13, 14, 16], "922": 15, "xbar": [], "920": [], "issubclass": [], "921": [], "_decimal_sqrt_of_frac": [], "mss": [], "denomin": [13, 16], "_float_sqrt_of_frac": [], "374": [], "372": [], "373": [], "sketch": [], "bug": 12, "msg407078": [], "bit_length": [], "_sqrt_bit_width": [], "_integer_sqrt_of_frac_rto": [], "rnorm": 10, "sampdistsd": 10, "estimatorbia": 10, "ns": 10, "averagesamplesd": 10, "averagesamplemean": 10, "sample_mean_1": 10, "samplemean": 10, "samplesd": 10, "dashdot": 10, "ylim": [10, 13], "axhlin": [10, 13, 14, 15], "imprecis": [10, 14], "115": [10, 15, 19], "certainti": [10, 11, 17], "ppf": [10, 11, 12], "5th": [10, 19], "025": [10, 13, 15, 16], "975": [10, 11, 15, 16], "9599639845400545": 10, "959963984540054": 10, "leq": [10, 11], "algebra": [10, 14, 15], "rewrit": [10, 12, 16, 17], "pm": 10, "15th": 10, "85th": 10, "0364333894937898": 10, "960201263621358": 10, "9602012636213575": 10, "262157162740992": 10, "2621571627409915": [], "uncertain": 10, "probabail": 10, "bayesian": [10, 13, 14, 15], "frequentist": [10, 17], "cirep": 10, "rng": 10, "default_rng": 10, "n_experi": 10, "increment": 10, "simdata": 10, "too_high": 10, "too_low": 10, "no_mean": 10, "pointplot": [10, 13, 14, 16], "130": 10, "vline": 10, "ymin": 10, "ymax": 10, "pedant": [10, 12], "credibl": 10, "drastic": 10, "tconfint_mean": 10, "ci_1": 10, "api": [10, 14, 15, 16], "sm": [10, 14, 15, 16], "ci_2": 10, "descrstatsw": 10, "514149929408497": 10, "485850070591503": 10, "shelf": 10, "load_dataset": 10, "total_bil": 10, "sex": [10, 19], "sun": [10, 11], "dinner": 10, "datapoint": 10, "x_estim": 10, "extraordinarili": 10, "sloppi": 10, "pollut": 10, "deficit": 10, "illusori": [10, 13], "implaus": [10, 11, 16], "resent": 10, "weaker": [10, 11], "ore": 10, "unbiased": 10, "shirt": 10, "amstat": 10, "jse": 10, "v10n3": 10, "friedman": 10, "harmon": 11, "ludwig": 11, "wittgenstein": 11, "dogmat": 11, "dogma": [11, 17], "heresi": 11, "surround": [7, 11], "succumb": 11, "promot": 11, "professor": 11, "ensconc": 11, "ivori": 11, "happili": [11, 15], "protect": [11, 17], "tenur": 11, "indulg": 11, "thoroughli": 11, "unproduct": 11, "extrasensori": 11, "percept": 11, "esp": 11, "gloriou": 11, "clairvoy": 11, "adjac": 11, "upward": [11, 13], "portrai": 11, "substant": [11, 15], "testabl": 11, "music": [11, 13], "speed": [7, 11], "ontolog": 11, "battlefield": 11, "tautolog": 11, "club": [11, 12], "unfalsifi": 11, "domain": [11, 13], "wall": [11, 16], "hypothei": 11, "wacki": 11, "badli": [11, 15], "h_0": [11, 12, 13, 14, 15, 16, 17], "neglect": 11, "h_1": [11, 12, 13, 14, 15, 16, 17], "defend": [11, 17], "prosecutor": 11, "presumpt": 11, "innoc": 11, "maximis": 11, "yield": 11, "convict": [11, 15], "lawyer": 11, "unlucki": 11, "1024": [11, 14], "retain": [11, 12, 13, 15, 17], "h0": 11, "ii": [11, 13, 14, 15], "wrongfulli": 11, "jurist": 11, "blackston": 11, "guilti": 11, "punish": 11, "central": [11, 12, 13, 14, 15], "retent": 11, "secondari": 11, "conced": 11, "binomi": [11, 12], "xlim": 11, "evas": 11, "annot": [11, 12, 14], "xytext": [11, 12, 14], "arrowprop": [11, 12, 14], "dict": [11, 12, 14, 15], "arrowstyl": [11, 12, 14], "600": [11, 16], "580": [11, 15], "patch": 11, "get_x": 11, "set_color": 11, "lightgrei": 11, "geq": 11, "occult": 11, "divin": 11, "privat": 11, "jargon": [11, 13, 17], "contriv": 11, "practition": [11, 17], "ashlei": 11, "cc": [11, 20], "onesid": 11, "jerzi": 11, "cleaner": 11, "021": 11, "intoler": 11, "soften": 11, "trillion": 11, "mistaken": 11, "bluntli": 11, "chisqreport": 11, "unsurpris": [11, 15, 16], "framework": [11, 15, 16, 17], "tension": 11, "062": 11, "patholog": [11, 13], "051": [11, 13], "049": [11, 13, 15], "reput": 11, "amazingli": 11, "attest": 11, "sig": 11, "06": [11, 13], "spss": 11, "0000000001": 11, "suppress": 11, "tier": 11, "whichev": [7, 11, 14, 15], "implement": [11, 12, 14, 15], "binom_test": 11, "6m": [10, 11], "mwt0c30539b1zrk5vf14dpr44pd98r": [10, 11], "ipykernel_11158": [], "1922679674": 11, "deprecationwarn": [10, 11], "deprec": [10, 11], "binomtest": 11, "02097873567785172": 11, "ters": 11, "emphasis": [11, 13], "unabl": [11, 17], "alternative2": 11, "entireti": 11, "powerfunct": 11, "sharpli": [11, 13], "prob": [11, 15], "cdf": [11, 13, 14], "prob_low": 11, "probablil": 11, "alert": [11, 15], "inappropri": 11, "mice": 11, "tiger": 11, "abroad": 11, "georg": 11, "1976": 11, "cohen": [11, 14, 19], "1988": [11, 13, 19], "elli": [11, 19], "theta_0": 11, "successfulli": 11, "psychic": 11, "proclaim": 11, "crisi": 11, "magnifi": 11, "quiet": 11, "darken": 11, "distract": 11, "strengthen": [11, 17], "boost": [11, 15, 16], "powerfunctionsampl": 11, "qbinom": 11, "critlo": 11, "crithi": 11, "figwidth": 11, "600px": 11, "zig": 11, "zag": 11, "contempl": 11, "feasibl": 11, "partli": [11, 12, 17], "wife": 11, "bureaucrat": 11, "nhst": 11, "necess": [11, 15], "promin": 11, "hate": [11, 12, 14, 17], "histor": 11, "disput": 11, "mash": 11, "lehmann": [11, 19], "mishmash": 11, "exrem": 11, "emphat": 11, "unrepent": 11, "thoughtless": [11, 15], "rush": [11, 14], "gelman": [11, 19], "stern": [11, 19], "2006": [11, 13, 19], "significantli": [11, 13, 14, 15], "54": [7, 11, 13, 19], "borderlin": [11, 17], "wari": 11, "ubiquit": [11, 17], "cursori": 11, "recap": 11, "soft": 11, "fond": 11, "tractatu": 11, "logico": 11, "philosphicu": 11, "emerg": [11, 12], "hybrid": 11, "apolog": 11, "rigor": 11, "intellect": 11, "adversari": 11, "uk": [11, 19], "french": 11, "inquisitori": 11, "conflat": [11, 12, 13], "karl": [11, 12], "popper": 11, "falsificationist": 11, "falsification": 11, "fine": [11, 12, 14, 15], "proviso": 11, "caught": 11, "057": [11, 14], "000000000000000000000000136": 11, "1900": [12, 19], "difficulti": [12, 14, 17], "imaginari": 12, "spade": 12, "choice_1": 12, "choice_2": 12, "subj1": 12, "subj2": 12, "subj3": 12, "subj4": 12, "subj5": 12, "195": 12, "subj196": 12, "196": 12, "subj197": 12, "197": 12, "subj198": 12, "198": 12, "subj199": 12, "199": 12, "subj200": 12, "o_2": 12, "heartsuit": 12, "o_1": 12, "diamondsuit": 12, "spadesuit": 12, "o_3": 12, "clubsuit": 12, "o_4": 12, "o_i": 12, "p_j": [12, 14], "p_1": 12, "p_2": 12, "p_3": 12, "p_4": 12, "panad": 12, "float64": 12, "e_i": [12, 15], "p_i": 12, "225": [12, 16], "convention": [12, 13], "chase": [12, 14, 15], "manychi": 12, "y5": 12, "region": [12, 13, 14], "95th": 12, "goftest": 12, "critical_valu": 12, "hmm": 12, "f_ob": 12, "f_exp": 12, "power_divergenceresult": 12, "pvalu": [12, 13, 14], "0377418520240214": 12, "gosh": 12, "darn": 12, "readi": [12, 15], "x2": [12, 13, 14], "038": 12, "nullprob": 12, "741666666666667": 12, "192": 12, "preced": 12, "cry": 12, "writer": 12, "intim": 12, "polit": [12, 13, 17], "intro": [12, 13, 15, 20], "dens": 12, "overrid": 12, "thesi": 12, "satan": 12, "delight": 12, "scriptur": 12, "rohlf": [12, 19], "1994": [12, 14, 19], "034": 12, "unclear": 12, "collabor": 12, "modifi": [7, 12, 14, 15, 16], "guardbot1": 12, "halt": 12, "guardbot2": 12, "leela": 12, "fry": 12, "uh": [12, 15], "eh": 12, "puppi": [12, 17], "flower": [7, 12, 17], "sweeti": 12, "futurama": 12, "bot": 12, "documentari": 12, "quaint": 12, "nativ": [12, 13], "chapek": 12, "visitor": 12, "civil": 12, "chapek9": [12, 17], "180": [12, 17], "overwhelmingli": 12, "tabul": [12, 13, 16, 17], "freqtabl": 12, "teeni": 12, "o_": 12, "c_": 12, "ij": 12, "r_i": 12, "r_1": 12, "c_j": 12, "c_1": 12, "p_": 12, "e_": 12, "_i": [12, 15], "conting": [12, 19], "rcl": [12, 13, 14, 15], "rc": [12, 16], "bundl": 12, "frill": 12, "chi2_conting": [12, 17], "crunch": 12, "dof": [12, 13, 14, 17], "ex": [12, 17], "721571792595633": 12, "004697213134214071": 12, "31666667": 12, "68333333": 12, "21666667": 12, "78333333": 12, "46666667": 12, "53333333": 12, "chooser": 12, "easis": 12, "wherev": 12, "instal": 12, "conda": 12, "webpag": 12, "plug": [12, 14, 15, 16], "pg": [12, 14, 15, 16], "chi2_independ": 12, "_lib": 12, "_util": 12, "runtimewarn": 12, "_ncx2_sf": 12, "cond": [12, 15], "temp": 12, "316667": 12, "216667": 12, "466667": 12, "683333": 12, "783333": 12, "533333": [12, 13], "observed_manu": 12, "observed_pingouin": 12, "lambda": [12, 15], "pval": [12, 14, 15, 16], "cramer": 12, "721572": 12, "004697": 12, "244058": 12, "842961": 12, "cressi": 12, "666667": 12, "757745": 12, "004613": 12, "244469": 12, "844244": 12, "likelihood": [12, 15], "922195": 12, "004249": 12, "246331": 12, "849966": 12, "freeman": [12, 19], "tukei": [12, 15], "131562": 12, "003827": 12, "248681": 12, "856988": 12, "mod": [12, 15], "421716": 12, "003310": 12, "251901": 12, "866249": 12, "neyman": 12, "280435": 12, "002154": 12, "261198": 12, "890668": 12, "wow": 12, "pinguoin": [12, 13, 15], "dirti": [12, 15], "bow": 12, "classifi": [12, 14, 16], "reactiv": 12, "worthless": 12, "cartoon": 12, "yate": [12, 19], "1934": [12, 19], "redefin": [12, 13], "hack": 12, "commonplac": [12, 13, 16], "phi": 12, "unsatisfactori": 12, "propos": [12, 15], "cram\u00e9r": [12, 19], "cochran": [12, 19], "1954": [12, 19], "larntz": [12, 19], "1978": [12, 19], "hospit": 12, "matern": 12, "ward": 12, "girl": [12, 16], "infeas": 12, "emot": 12, "statu": 12, "witchcraft": [12, 13], "whom": 12, "stake": 12, "fire": 12, "awfulli": [12, 16], "salem": 12, "userwarn": [12, 16], "309402": 12, "068885": 12, "454794": 12, "444097": 12, "265804": 12, "070738": 12, "451788": 12, "439356": 12, "321858": 12, "068365": 12, "455649": 12, "445448": 12, "507069": 12, "061107": 12, "468179": 12, "465301": 12, "850051": 12, "049744": 12, "490539": 12, "500918": 12, "276692": 12, "021613": 12, "574276": 12, "632005": 12, "r_2": 12, "c_2": 12, "hypergeometr": 12, "daunt": 12, "fisher_exact": 12, "freq_tabl": 12, "oddsratio": 12, "03571428571428571": 12, "036": [12, 13], "hire": 12, "parti": [12, 14], "agpp": 12, "advertis": 12, "160": 12, "lend": 12, "eek": 12, "1947": [12, 13, 19], "nonstandard": 12, "p_a": 12, "p_b": 12, "p_c": 12, "p_d": 12, "diagon": [12, 13, 15], "revert": 12, "response_befor": 12, "response_aft": 12, "subj": 12, "chi2_mcnemar": 12, "approx": 12, "033333": 12, "000523": 12, "000325": 12, "agresti": [12, 19], "1996": [12, 14, 19], "misunderstood": 12, "conflict": [12, 19], "garbag": 12, "lrt": 12, "hogg": [12, 19], "mckean": [12, 19], "reserv": 12, "draft": 12, "collaps": 12, "irreproduc": 12, "medic": 13, "blood": 13, "agricultur": 13, "phosphoru": 13, "plant": 13, "Its": 13, "stone": 13, "zeppo": 13, "curios": 13, "devis": 13, "set_frame_on": [13, 14], "get_yaxi": [13, 14], "get_xaxi": [13, 14], "hline": 13, "xmin": 13, "xmax": 13, "mu_0": 13, "sigma_0": 13, "ztesthyp": 13, "addition": [7, 13], "diagnost": [13, 15], "z_": [13, 14], "iteself": 13, "ztest1": 13, "ztest2": 13, "crit": 13, "p_lower": 13, "p_upper": 13, "hatch": 13, "ztest": 13, "644854": 13, "281552": 13, "959964": 13, "575829": 13, "326348": 13, "290527": 13, "090232": 13, "unnecessari": [13, 15], "sd_true": 13, "mu_nul": 13, "sem_tru": 13, "1242645786248002": 13, "z_score": 13, "259605535157681": 13, "normaldist": 13, "lower_area": 13, "011922871882469877": 13, "cumul": 13, "opaqu": 13, "becauw": 13, "upper_area": 13, "p_valu": 13, "023845743764939753": 13, "experimet": 13, "dreari": 13, "kingdom": 13, "unicorn": 13, "fairi": 13, "leprechaun": 13, "bereft": 13, "520614752375915": [], "ttesthyp_onesampl": 13, "axessubplot": [], "1908": [13, 19], "seali": 13, "gosset": 13, "student1908": [], "chemist": 13, "guin": 13, "breweri": 13, "box1987": [], "dim": 13, "employe": 13, "secret": 13, "pseudonym": 13, "accommod": [13, 17], "ttestdist": 13, "y_norm": 13, "y_t": 13, "se_est": 13, "flavor": [13, 20], "ttest_1samp": 13, "popmean": 13, "25471286700693": 13, "03614521878144544": 13, "overjoi": 13, "shorthand": [13, 16], "kinder": [13, 14], "confidence_level": 13, "degrees_freedom": 13, "sample_standard_error": 13, "confidence_interv": 13, "84421513791415": 13, "75578486208585": 13, "whew": 13, "compress": [13, 15], "ttest": [13, 14], "ci95": [13, 14, 15], "bf10": [13, 14, 15], "254713": 13, "036145": 13, "504169": 13, "571446": 13, "bay": [13, 14, 19], "harpo": 13, "tutor": 13, "anastasia": 13, "bernadett": 13, "n_1": [13, 14], "n_2": [13, 14], "harpo_summari": 13, "998942": 13, "055556": 13, "774918": 13, "harpohist": [], "ttestci": 13, "alloc": 13, "mu_1": 13, "mu_2": 13, "_1": [13, 14, 15], "_2": [13, 14, 15], "mu1": [13, 14], "sigma1": 13, "mu2": [13, 14], "x1": [13, 14], "line2d": [], "0x16225f820": [], "sigma_1": 13, "sigma_2": 13, "weigh": [13, 15], "w_1": 13, "w_2": 13, "2_p": [13, 16], "sigma_p": 13, "ugli": [13, 15, 16], "ik": [13, 14, 15], "_k": [13, 14, 15], "_p": [13, 16], "ttest_ind": 13, "unifi": 13, "sent": 13, "harpo_wid": 13, "duck": 13, "115432": 13, "042529": 13, "739561": 13, "755": 13, "53577": 13, "foolish": 13, "cleanli": 13, "testsm": 13, "overgeneralis": 13, "ttestoneassumpt": 13, "wilcox": 13, "homoscedast": [13, 14, 16], "leven": [13, 19], "crop": 13, "ttesthyp2": [], "ttesthyp": [], "diagnosi": [13, 19], "sigma2": 13, "0x162389810": [], "anasatasia": 13, "034187": 13, "024806": 13, "05361": 13, "556": 13, "054": [13, 16], "panic": 13, "sky": 13, "chico": 13, "challeng": [13, 14], "grade_test1": 13, "grade_test2": 13, "student1": 13, "student2": 13, "student3": 13, "student4": 13, "student5": 13, "980000": 13, "385000": 13, "616137": 13, "405612": 13, "900000": 13, "600000": 13, "700000": 13, "050000": 13, "pairedta": 13, "get_xlim": 13, "get_ylim": 13, "ls": 13, "set_text": 13, "9508686092602991": 13, "8591313907397005": 13, "i1": [13, 15], "i2": [13, 15], "d_": 13, "mu_d": 13, "sigma_d": 13, "475436": 13, "447952": 13, "5991": 13, "577": 13, "999984": 13, "215765": 13, "150446": 13, "0000032": 13, "018073": 13, "inf": 13, "701407": 13, "interestd": 13, "equal_var": [13, 14, 16], "ttest_indresult": 13, "11543239": 13, "04252949": 13, "02126474": 13, "97873526": 13, "substract": [13, 14], "subract": 13, "ttest_rel": 13, "ttest_relresult": [], "475436088339379": 13, "660335028063474e": 13, "9999983396649719": 13, "cohen1988": [], "wrinkl": 13, "defenc": 13, "nitpick": 13, "mcgrath2006": [], "accuraci": [13, 14], "delta": [13, 15, 16], "blindli": 13, "mu_o": 13, "5041691240370938": [], "hedg": [13, 14, 19], "hedges1981": [], "glass": [13, 19], "purer": 13, "hedges1985": [], "tutor1": 13, "tutor2": 13, "u1": 13, "u2": 13, "s1": [], "s2": [], "7395614040382655": [], "prime": [13, 14, 15, 17], "displaystyl": [13, 14, 15, 17], "7486295728919304": [], "_d": 13, "mean_diff": 13, "sd_diff": 13, "4855669223382983": [], "2213698410715347": [], "clt": [], "skew": [13, 15], "trigger": [13, 17], "probplot": 13, "seed": 13, "normal_data": 13, "hist": [13, 15], "qq_fig": 13, "departur": [13, 15], "qqskew": [], "qqheavi": [], "kurtosi": [13, 15], "skewed_data": 13, "qqskew_fig": 13, "heavy_tailed_data": 13, "qqheavy_fig": 13, "shapiro1965": [], "a_i": 13, "mumbl": [13, 15], "ars": 13, "swdist": [], "clump": 13, "shapiroresult": [13, 14], "9898834228515625": [], "6551706790924072": [], "nonparametr": [13, 14], "mann": 13, "whitnei": 13, "rdata": 13, "awesome2": 13, "score_a": 13, "score_b": 13, "datum": 13, "037109375": 13, "studentttest": [], "earth": 13, "bought": 13, "exot": 13, "nutrient": 13, "european": 13, "sheer": 13, "arrog": 13, "weaken": [13, 17], "nastier": 13, "delici": 13, "smoothi": 13, "mcnemar": [13, 16, 19], "groucho": 13, "smirnov": 13, "kolomogorov": 13, "ow": 14, "tenuou": 14, "remaind": [7, 14], "antidepress": 14, "joyzepam": [14, 16], "undergo": 14, "cbt": [14, 16], "doubli": 14, "clintrial": [14, 16], "clin": 14, "groupbi": [14, 16], "agg": 14, "716667": 14, "483333": 14, "450000": 14, "moodgain": [], "mu_p": [14, 16], "induc": [14, 16], "mu_a": [14, 16], "mu_j": [14, 16], "pessimist": [14, 15], "n_k": 14, "fake": 14, "y_": [14, 16], "cosmet": 14, "y_p": [14, 16], "arbitrarili": [14, 17], "uncool": 14, "num": [7, 14], "ann": 14, "egg": [7, 14], "whoever": 14, "ss": [14, 15, 16], "tot": [14, 15], "_w": 14, "grand": [14, 16], "_b": [14, 16], "yai": 14, "mu3": 14, "x3": 14, "anovavar_fig": 14, "arrow": 14, "workabl": 14, "fiddl": 14, "lcl": 14, "ms": [14, 15, 16], "epsilon_": [14, 15, 16], "residu": 14, "leftov": [14, 16], "mu_k": 14, "epsilon": 15, "ch": [], "hai": [14, 19], "1899": 14, "0025": 14, "0225": 14, "1225": 14, "0136": 14, "1003": 14, "2614": 14, "gp_mean": 14, "grouped_mean": 14, "group_mean": 14, "dev_from_group_mean": 14, "squared_dev": 14, "ipykernel_11188": [], "145942847": [], "futurewarn": 10, "numeric_onli": 14, "dataframegroupbi": [], "shut": 14, "sight": 14, "beer": 14, "fridg": 14, "telli": 14, "nest": [14, 15], "0144": 14, "2704": 14, "0064": 14, "0484": 14, "0324": 14, "2025": 14, "1444": 14, "2304": 14, "miniscul": 14, "ssw": 14, "3918000000000001": 14, "grand_mean": [14, 16], "dev_from_grandmean": 14, "xtab": 14, "group_siz": 14, "weighted_squared_dev": 14, "3421671601": [], "163333": 14, "026678": 14, "160067": 14, "603333": 14, "364011": 14, "184067": 14, "430000": 14, "184900": 14, "109400": 14, "ssb": 14, "453533333333334": 14, "slight": [14, 15], "painless": 14, "lclcl": 14, "lclclcl": 14, "woohooo": 14, "lookup": 14, "672726890401883e": 14, "0000867": 14, "f_onewai": 14, "lacon": 14, "anth": 14, "instantli": 14, "undersand": 14, "unsurprisingli": 14, "ol": [14, 15, 16], "aov_tabl": 14, "anova_lm": [14, 15, 16], "typ": [14, 16], "sum_sq": [14, 16], "pr": [14, 15, 16], "gt": [14, 15, 16], "453333": 14, "610778": 14, "000086": 14, "391667": [14, 16], "celebr": 14, "lm": 14, "implic": [14, 15], "bask": 14, "glori": 14, "unc": [14, 16], "np2": [14, 16], "726667": 14, "712762": 14, "092778": 14, "eta": [14, 16], "sstot": 14, "eta_squar": 14, "7127545404512933": 14, "competitor": 14, "fish": [14, 15], "expedit": [14, 15], "guidanc": 14, "latin": 14, "shaffer": [14, 19], "1995": [14, 17, 19], "simultan": 14, "hsu": [14, 19], "dunn": [14, 19], "1961": [14, 17, 19], "note7": [], "prime_j": 14, "pp": 14, "1979": [14, 15, 19], "sequenti": [14, 17, 19], "unchang": [14, 15, 16], "tripl": [14, 16], "prime_": 14, "020": [14, 15], "019": [14, 16], "022": 14, "044": [14, 16], "outperform": [14, 15], "elabor": [14, 17], "padjust": [14, 15], "pairwise_ttest": [], "pairwise_test": 14, "_continuous_distn": [], "6832": [], "_nct_sf": [], "clip": [], "_boost": [], "nc": [], "6826": [], "_nct_cdf": [], "parametr": 14, "206222": 14, "001811": 14, "003621": 14, "947": 14, "241659": 14, "354183": 14, "205486": 14, "814": 14, "721696": 14, "168708": 14, "000030": 14, "000091": 14, "475": 14, "231": 14, "820482": 14, "unalt": 14, "lrcl": 14, "qq": [14, 15, 16], "shapiro": [14, 15, 16, 19], "wilk": [14, 15, 16, 19], "sigma_k": 14, "deadlin": 14, "skin": 14, "1960": [14, 19], "forsyth": [14, 19], "1974": [14, 15, 19], "nope": [14, 17], "drink": 14, "f_": [14, 16], "welch": [14, 19], "1951": [14, 19], "welch_anova": 14, "ddof1": 14, "ddof2": 14, "11th": 14, "april": 14, "2022": [14, 15], "resid": [14, 15, 16], "edifi": 14, "verg": 14, "qqplot": [14, 15, 16], "96019": 14, "605309": 14, "9601902365684509": 14, "6053088307380676": 14, "particuar": 14, "squint": [14, 15], "distringut": 14, "wilcoxon": 14, "1952": [14, 19], "rss": [14, 16], "sum_k": 14, "sum_i": [14, 15], "needlessli": 14, "jiggeri": 14, "pokeri": 14, "lord": 14, "dilig": [14, 17], "f_j": 14, "rename_axi": 14, "unique_valu": 14, "f_3": 14, "tcf": 14, "sum_j": 14, "reliev": 14, "existenti": 14, "horror": 14, "076": [14, 15], "002": 14, "708": 14, "096": [14, 16], "clinical_wid": [], "no_therapi": 14, "307": 14, "616": 14, "732": 14, "curious": 14, "3068": 14, "sahai": [14, 19], "ageel": [14, 19], "2000": [14, 19], "anova2": [], "alpha_k": 14, "stickler": 14, "discoveri": 14, "bonferrroni": 14, "bonf": [14, 15], "fancier": 15, "sleepycorrelation_fig": [], "sleepycorrel": 15, "secretli": 15, "sleep_regressions_1": 15, "smf": 15, "intercept": [15, 16], "param": 15, "mx": 15, "decai": 15, "b_1": [15, 16], "b_0": [15, 16], "frilli": 15, "epsilon_i": 15, "sleep_regressions_2": 15, "_0": 15, "optim": 15, "hook": 15, "shortcut": 15, "lift": 15, "curve_fit": 15, "xdata": 15, "ydata": 15, "stolen": 15, "shamelessli": [15, 17], "phillip": 15, "53779773": 15, "func": 15, "initialparamet": 15, "fittedparamet": 15, "pcov": 15, "modelpredict": 15, "xmodel": 15, "ymodel": 15, "linexdata": 15, "lineydata": 15, "badparamet": 15, "badpredict": 15, "bad_xmodel": 15, "bad_ymodel": 15, "linear_regress": [15, 16], "mod1": 15, "coef": [15, 16], "adj_r2": 15, "131": 15, "caclul": 15, "modx": 15, "78": 15, "scifi": 15, "b_2": [15, 16], "mulitipl": 15, "mod2": 15, "sleep_regressions_3d": 15, "3d": 15, "mpl_toolkit": 15, "mplot3d": 15, "axes3d": 15, "set_styl": 15, "whitegrid": 15, "add_subplot": 15, "111": [10, 15], "set_zlabel": 15, "lmm": 15, "plane": 15, "xs": 15, "tile": 15, "ys": 15, "zs": 15, "plot_surfac": 15, "scatter": 15, "angl": 15, "view_init": 15, "b_": 15, "y_pred": 15, "ss_resid": 15, "1838": 15, "7224883200004": 15, "forg": 15, "boldli": 15, "onward": 15, "ss_tot": [15, 16], "590000000002": 15, "hair": 15, "816101821524835": 15, "8161027191478786": 15, "yep": 15, "adj": 15, "incident": 15, "groan": 15, "sick": 15, "wholesal": 15, "df_": [15, 16], "tuesdai": [7, 15], "17th": 15, "omiss": 15, "worm": 15, "generaliz": 15, "residuals_": 15, "ss_re": [15, 16], "ss_mod": 15, "df_mod": 15, "df_model_": 15, "df_re": 15, "df_resid_": 15, "calucul": 15, "ms_mod": 15, "ms_re": [15, 16], "sf": 15, "215": 15, "2382865368443": 15, "1457300163209325e": 15, "regression_f": 15, "rl": 15, "sigma_b": 15, "812": 15, "revist": 15, "176426e": 15, "591e": 15, "85439996017091": 15, "hunt": 15, "parwis": 15, "hardlin": 15, "bonferroni": 15, "inflat": 15, "rcorr": 15, "628": 15, "903": 15, "566": 15, "098": 15, "panick": 15, "attain": 15, "strongest": 15, "cautiou": 15, "dan_sleep_standard": 15, "baby_sleep_standard": 15, "mod3": 15, "146": [], "relatiship": 15, "uncorrel": 15, "collinear": [], "screw": [15, 17], "adequaci": 15, "diagnos": 15, "ail": 15, "dispos": [7, 15], "revolv": 15, "studentis": 15, "gum": 15, "normalis": 15, "h_i": 15, "add_const": 15, "est": 15, "get_influ": 15, "res_standard": 15, "resid_studentized_intern": 15, "jackknif": 15, "nightmar": 15, "grumbl": 15, "sigma_": 15, "stud_r": 15, "outlier_test": 15, "student_resid": 15, "unadj_p": 15, "494821": 15, "621857": 15, "105570": 15, "271676": 15, "461729": 15, "645321": 15, "475346": 15, "635620": 15, "166721": 15, "867940": 15, "disproportion": 15, "junk": 15, "defect": 15, "ro": 15, "leverag": 15, "ascii_uppercas": 15, "constrain": [15, 16], "cook": 15, "d_i": 15, "ness": 15, "cooks_dist": 15, "df_cook": 15, "grai": 15, "prettifi": 15, "noterobust": [], "sw": 15, "veer": 15, "invok": 15, "standardized_residu": 15, "as_datafram": 15, "df_res_pr": 15, "pred": 15, "kung": 15, "fu": 15, "master": [7, 15], "tx": [15, 19], "regressor": 15, "downright": 15, "scari": 15, "footnot": 15, "christoph": 15, "nolan": 15, "vice": 15, "versa": 15, "fanat": 15, "h_": 15, "notabl": 16, "unbalanc": [], "mu_": 16, "marginalis": 16, "formul": 16, "presenc": 16, "model1": 16, "aov": [], "model2": 16, "4533": 16, "7267": 16, "7143": 16, "0000": [15, 16], "8409": 16, "4672": 16, "5816": 16, "0126": 16, "4170": 16, "2711": [15, 16], "1356": 16, "4898": 16, "1246": 16, "2933": 16, "6533": 16, "0544": 16, "uncorrect": [14, 16], "spoiler": 16, "f_a": 16, "_r": 16, "outset": 16, "evapor": 16, "sensat": 16, "urg": [16, 17], "rci": 16, "runn": 16, "ada84": 19, "reconsider": 19, "artifact": 19, "334": 19, "agr96": 19, "wilei": 19, "hoboken": 19, "nj": 19, "agr02": 19, "ans73": 19, "american": 19, "bhoconnell75": 19, "hammel": 19, "connel": 19, "graduat": 19, "erkelei": 19, "187": 19, "398": 19, "404": 19, "bf74": 19, "364": 19, "367": 19, "cs63": 19, "houghton": 19, "mifflin": 19, "boston": 19, "ma": 19, "csg63": 19, "donald": 19, "thoma": 19, "julian": 19, "nathaniel": 19, "lee": 19, "gage": 19, "coc54": 19, "annal": 19, "315": 19, "coh88": 19, "lawrenc": 19, "erlbaum": 19, "cramer46": 19, "princeton": 19, "dun61": 19, "ell10": 19, "meta": 19, "cambridg": 19, "ell02": 19, "michael": 19, "asia": 19, "1151": 19, "1172": 19, "ebp83": 19, "barston": 19, "pollard": 19, "syllogist": 19, "295": 19, "306": 19, "ehp11": 19, "hast": 19, "peacock": 19, "ed": 19, "fis22a": 19, "royal": 19, "societi": 19, "fis22b": 19, "transact": 19, "222": 19, "368": 19, "gs06": 19, "328": 19, "331": 19, "hay94": 19, "harcourt": 19, "fort": 19, "hmc05": 19, "saddl": 19, "river": 19, "6th": [16, 19], "hol79": 19, "scandinavian": 19, "hot04": 19, "mcgraw": 19, "hsu96": 19, "chapman": 19, "hall": 19, "london": 19, "ioa05": 19, "plo": 19, "med": 19, "697": 19, "701": 19, "kuhbergerfs14": 19, "fritz": 19, "scherndl": 19, "kt73": 19, "review": [17, 19], "237": 19, "251": 19, "key23": 19, "monetari": 19, "reform": 19, "macmillan": 19, "kw52": 19, "kruskal": 19, "walli": 19, "criterion": [15, 17, 19], "583": 19, "621": 19, "lar78": 19, "253": 19, "263": 19, "leh11": 19, "erich": 19, "eyman": 19, "creation": 19, "springer": 19, "lev60": 19, "olkin": [13, 19], "editor": [17, 19], "honor": 19, "harold": 19, "hotel": 19, "278": 19, "292": 19, "stanford": 19, "palo": 19, "alto": 19, "ca": [15, 19], "mcn47": 19, "psychometrika": 19, "153": 19, "157": 19, "mee67": 19, "pea00": 19, "magazin": 19, "pfu11": 19, "mr": 19, "von": 19, "osten": 19, "henri": 19, "holt": 19, "sa00": 19, "birkhaus": 19, "sha95": 19, "annual": 19, "561": 19, "584": 19, "sr94": 19, "biometri": 19, "ste46": 19, "677": 19, "680": 19, "sti86": 19, "wel47": 19, "tudent": 19, "biometrika": 19, "wel51": 19, "330": 19, "336": [16, 19], "yat34": 19, "supplement": 19, "217": 19, "235": 19, "weed": 20, "fan": 20, "navarro": 20, "jasp": 20, "jamovi": 20, "concentr": 20, "textual": 20, "forego": 20, "emili": 20, "koth": 20, "bookdown": 20, "lsr": [16, 20], "BY": 20, "sa": 20, "520614752375916": 13, "35771062": [], "58285649": [], "18124928": [], "87165345": [], "35333772": [], "10911366": [], "74155069": [], "42264458": [], "23268415": [], "35225702": [], "52313138690589": [], "853899344758702": [], "20058272908474": [], "413614195429187": [], "097231846958": [], "031852221261412": [], "127": 10, "114": 10, "ipykernel_34445": 11, "ipykernel_34478": [], "stu08": 19, "harpohist_fig": 13, "keyerror": [], "3802": [], "get_loc": [], "3801": [], "_engin": [], "casted_kei": [], "3803": [], "err": [15, 16], "pyx": [], "indexengin": [], "hashtable_class_help": [], "pxi": [], "5745": [], "hashtabl": [], "pyobjecthasht": [], "get_item": [], "5753": [], "3807": [], "3805": [], "nlevel": [], "3806": [], "_getitem_multilevel": [], "3808": [], "is_integ": [], "3809": [], "3804": [], "listlik": [], "_check_indexing_error": [], "invalidindexerror": [], "0x156c18e50": [], "0x156cb7810": [], "ipykernel_84993": [], "4098096105": [], "keyword": [7, 10], "wil": 10, "ttestresult": 13, "temporari": [], "silenc": [], "seterr": [], "0x17d0090d0": [], "0x17d172ed0": [], "ipykernel_85531": [], "0x16c414290": [], "0x16c45f190": [], "ipykernel_85703": [], "0x284edb310": [], "0x284e5e3d0": [], "ipykernel_89710": [], "0x14ebfded0": [], "0x14ed64490": [], "ipykernel_89872": [], "0x13dd593d0": [], "0x13ee113d0": [], "ipykernel_90047": [], "ttesthyp_fig": 13, "0x14f64d6d0": [], "ipykernel_90237": [], "ttesthyp2_fig": 13, "ipykernel_90482": [], "pairedta_fig": 13, "scat": 13, "terplot": 13, "ipykernel_90589": [], "mcgrath": [13, 19], "meyer": [13, 19], "5041691240370937": 13, "1985": [13, 19], "1981": [13, 19], "sp": 13, "v1": 13, "v2": 13, "cohensd": 13, "9898831844329834": 13, "6551515460014343": 13, "2812": [], "scalex": [], "scalei": [], "arg": [], "kwarg": [], "2810": [], "_copy_docstring_and_deprec": [], "2811": [], "gca": [], "2813": [], "2814": [], "_ax": [], "1690": [], "1688": [], "_get_lin": [], "1689": [], "add_lin": [], "1691": [], "1692": [], "_request_autoscale_view": [], "_base": [], "_axesbas": [], "2301": [], "get_clip_path": [], "2302": [], "set_clip_path": [], "_update_line_limit": [], "2305": [], "get_label": [], "2306": [], "set_label": [], "_child": [], "_children": [], "2327": [], "2323": [], "2324": [], "2325": [], "datalim": [], "2326": [], "get_path": [], "2328": [], "2329": [], "1029": [], "1027": [], "1028": [], "_invalidi": [], "_invalidx": [], "recach": [], "1030": [], "_path": [], "660": 16, "661": [], "yconv": [], "convert_yunit": [], "_yorig": [], "_to_unmasked_float_arrai": [], "ravel": [], "663": [], "664": [], "cbook": [], "1335": [], "1333": [], "asarrai": [], "1334": [], "1965": [13, 19], "ipykernel_71101": [], "hed81": 19, "128": 19, "ho85": 19, "mm06": 19, "386": 19, "401": 19, "sw65": 19, "591": 19, "611": 19, "ipykernel_71350": [], "ipykernel_75354": [], "ipykernel_75478": [], "392003": 14, "213698": 14, "281069": 14, "ipykernel_77133": [], "moodgain_fig": [], "605305": [], "9601900577545166": [], "605305016040802": [], "ipykernel_83958": [], "ipykernel_84056": [], "ipykernel_84159": [], "ipykernel_84247": [], "ipykernel_84350": [], "ipykernel_84747": [], "ipykernel_84951": [], "ipykernel_85139": [], "ipykernel_85235": [], "ipykernel_85513": [], "ipykernel_85728": [], "ipykernel_85908": [], "multiindic": 14, "themeselv": 14, "monstros": [], "ipykernel_86606": [], "seper": 7, "ipykernel_96371": [], "counter": [7, 14], "trace": 14, "resus": 14, "ipykernel_96517": [], "hmmm": 14, "ipykernel_96643": [], "ipykernel_96780": [], "ipykernel_96890": [], "ipykernel_96995": [], "ipykernel_97175": [], "ipykernel_97355": [], "ipykernel_97449": [], "ipykernel_97593": [], "riski": 14, "fwer": 14, "alpha_": [], "hypothesistest": [], "cite": 15, "shaffer1995": [], "_correct": [], "comparisons_": [], "posthoc2": [], "hsu1996": [], "_bonferroni": [], "correction_": [], "dunn1961": [], "142625": 14, "99407947": 14, "antsi": 14, "skeptic": 14, "chair": 14, "infrastructur": 14, "erect": 14, "regain": 14, "somedai": 14, "kinda": 14, "innit": 14, "aplomb": 14, "23828653684436": [], "1457300163208854e": [], "147": [], "139": [], "hasattr": [], "cl": [], "_autogenerated_signatur": [], "subclass": [], "141": [], "142": [15, 16], "inherit": 7, "143": [], "hierarchi": [], "144": [], "flag": [], "145": [], "148": [], "__name__": [], "149": 15, "__qualname__": [], "1227": [], "1228": [], "docstr": [], "signatur": [], "1229": [], "_update_set_signature_and_docstr": [], "1230": [], "_internal_upd": [], "normalize_kwarg": [], "1223": [], "1216": [], "1217": [], "1218": [], "prenorm": [], "1219": [], "1220": [], "1221": [], "maintain": [7, 16], "backcompat": [], "1222": [], "_update_prop": [], "1224": [], "prop_nam": [], "1197": [], "prop": [], "errfmt": [], "1195": [], "getattr": [], "set_": [], "1196": [], "callabl": [], "1198": [], "1199": [], "ret": [], "1200": [], "1990": 15, "ce": 15, "shill": 15, "duplic": 15, "2d": 15, "my_sleep": 15, "my_grump": 15, "upcom": 15, "\u00e0dj_r2": 15, "statisticali": [], "0435": 15, "8161": 15, "8123": 15, "0864": 15, "9047": 15, "0559": 15, "1715": 15, "0158": 15, "7937": 15, "0022": 15, "0388": 15, "9691": 15, "1089": 15, "1132": 15, "sink": 15, "cutoff": 15, "moreso": 15, "y\u02c6i": [], "yi": [], "fitted_v_observ": 15, "640x480": [], "lowess": 15, "curvatur": 15, "breusch": [15, 19], "pagan": [15, 19], "cozi": 15, "lagrang": 15, "linearli": 15, "bptest": 15, "het_breuschpagan": 15, "exog": 15, "24191983926486693": [], "8860694728713404": [], "bp79": 19, "trevor": 19, "adrian": 19, "heteroscedast": [15, 19], "coeffici": [16, 19], "econometrica": 19, "econometr": 19, "1287": 19, "1294": 19, "4886831614554388": 15, "7832200556890354": 15, "assur": [15, 17], "9656": 15, "0409": 15, "4231": 15, "9301": 15, "0010": 15, "9502": 15, "5535": 15, "0487": 15, "8518": 15, "0105": 15, "5275": 15, "5485": 15, "summari": [], "dep": 15, "wed": [], "jun": [], "2023": 15, "15e": 15, "287": 15, "aic": 15, "581": 15, "bic": 15, "588": 15, "nonrobust": 15, "041": 15, "423": 15, "930": 15, "553": 15, "852": 15, "271": [15, 16], "039": 15, "969": [15, 16], "527": 15, "549": 15, "omnibu": 15, "durbin": 15, "watson": 15, "743": 15, "jarqu": 15, "bera": 15, "jb": 15, "218": 15, "053": [15, 16], "897": 15, "203": 15, "heteroskedast": [15, 19], "cov_typ": 15, "sandwich": 15, "hc1": 15, "201": 15, "78e": 15, "996": 15, "793": 15, "597": 15, "987": 15, "780": 15, "282": 15, "037": 15, "970": 15, "541": 15, "563": 15, "mmmm": 15, "smell": 15, "diag": 15, "1980": [15, 19], "june": 15, "vif": 15, "x_k": 15, "2_": 15, "b_k": 15, "variance_inflation_factor": 15, "listcomp": [], "960321": 15, "148528": 15, "658389": 15, "442617": 15, "015119": 15, "mighti": 15, "outliers_influ": 15, "784569": 15, "651038": 15, "residplot": 15, "line_kw": 15, "fri": [], "resid1": 15, "evenli": 15, "regressionn": 15, "p3": [15, 16], "mon": [], "jul": [], "nonaddit": 15, "tukey1949on": 15, "fox2018r": 15, "nonlinear": 15, "mod_curve_check": 15, "540": 15, "642": 15, "027": 15, "979": 15, "819": 15, "878": [15, 16], "958": 15, "867": 15, "494": 15, "522": 15, "603": 15, "773": [15, 19], "011": 15, "266": 15, "966": 15, "517": 15, "010": 15, "162": 15, "033": 15, "sdfsdafad": [], "cox": 15, "997024": 15, "626177": 15, "907817": 15, "103952": 15, "whi80": 19, "econometrika": 19, "838": 19, "logarithm": 15, "ln": 15, "boxcox": 15, "dan_sleep_transform": 15, "best_lambda": 15, "kdeplot": 15, "7912772737277842": 15, "997866": 15, "625397": 15, "895394": 15, "093393": 15, "989864": 15, "df_slplot": 15, "sqrt_abs_stand_r": 15, "sl": 15, "991": [], "989": [], "_pylab_help": [], "gcf": [], "destroy_fig": [], "990": [], "992": [], "discount": 15, "absorb": [15, 16], "ockham": 15, "razor": 15, "pithi": 15, "chuck": 15, "akaik": [15, 19], "2k": 15, "mod_ful": 15, "summai": 15, "811": 15, "42e": 15, "582": [15, 16], "2787": 15, "242": 15, "945": 15, "842": 15, "715": 15, "9693": 15, "081": 15, "858": 15, "0157": 15, "058": 15, "954": 15, "526": 15, "558": 15, "0044": 15, "015": 15, "288": 15, "774": 15, "035": 15, "026": 15, "599": 15, "741": 15, "898": 15, "441": 15, "wade": 15, "get_aic": 15, "model_nam": 15, "as_text": 15, "hairli": 15, "whitespac": 15, "mod_no_dai": 15, "mod_no_babi": 15, "mod_no_dan": 15, "710": 15, "579": 15, "747": 15, "inclin": 15, "seduct": 15, "inclus": 15, "nml": 15, "posterior": [15, 17], "ins": 15, "stepwis": 15, "narrowli": 15, "defeat": 15, "inexact": 15, "algorithm": 15, "differnc": 15, "tue": [], "nuisanc": 15, "m1": [15, 16], "m0": [15, 16], "pigouin": 15, "dandi": 15, "ic": 15, "get_aic_b": 15, "empir": 15, "submodel": 15, "superscript": 15, "waaaaai": 15, "m_0": 15, "m_1": 15, "mo": 15, "df_resid": [15, 16], "ssr": [15, 16], "df_diff": [15, 16], "ss_diff": [15, 16], "1837": 15, "155916": 15, "092228": 15, "063688": 15, "003328": 15, "954116": 15, "hierarch": 15, "regressiondiagnost": [], "drug_mean": 16, "therapy_mean": 16, "ss_drug": 16, "ss_therapi": 16, "_a": 16, "_t": 16, "_m": 16, "845": 16, "9244": 16, "noisi": 16, "wall_color": 16, "xxxxxxx": [], "panel1": 16, "panel2": 16, "panel3": 16, "panel4": 16, "errorbar": [10, 16], "p4": 16, "ps": 16, "panelid": 16, "get_legend": 16, "horizontalalign": 16, "verticalalign": 16, "set_xticklabel": 16, "get_legend_handles_label": 16, "legend": 16, "ncol": 16, "avec": 16, "crossov": 16, "alpha_r": 16, "beta_c": 16, "awkwardli": 16, "_c": 16, "rearrang": 16, "eqnarrai": [], "align": [16, 17], "727": 16, "714": 16, "841": 16, "467": 16, "013": 16, "490": 16, "293": 16, "653": 16, "compris": 16, "phobia": 16, "desensitis": 16, "vs": 16, "wel": [], "eta_a": 16, "2_a": 16, "effsiz": 16, "7128": [], "0964": [], "0560": [], "713": 16, "056": 16, "unaccount": 16, "789": 16, "pacakg": 16, "09545": 16, "99123": 16, "qqnorm": [], "928816": 16, "185093": 16, "fussi": 16, "\u00eemagin": [], "jointli": 16, "decompos": 16, "r0": 16, "misguid": 17, "basicbay": [], "whybay": [], "bayesconting": [], "ttestbf": [], "bayesregress": [], "bayesanova": [], "umbrella": 17, "dry": 17, "mediterranean": 17, "southern": 17, "northern": 17, "africa": 17, "summer": 17, "wikipedia": 17, "rainfal": 17, "raini": 17, "climate_of_adelaid": 17, "045": 17, "0425": 17, "8075": 17, "0450": 17, "1050": 17, "0875": 17, "9125": 17, "d_1": 17, "d_2": 17, "h_2": 17, "d1": 17, "514": 17, "interfer": 17, "restat": 17, "learner": 17, "paradigm": 17, "flow": 17, "leap": 17, "lengthi": [16, 17], "hphantom": [], "contrapt": 17, "plausibilti": 17, "ccccc": 17, "6pt": 17, "2pt": 17, "uparrow": 17, "bf": 17, "consider": 17, "jeffrei": [17, 19], "kass": [17, 19], "rafteri": [17, 19], "charit": 17, "upsid": 17, "inigo": 17, "montoya": 17, "princess": 17, "bride": 17, "forbidden": 17, "statstic": 17, "daili": [7, 17], "prei": 17, "newspol": 17, "2013": [17, 19], "emphasi": 17, "counterinuit": 17, "astrai": 17, "1925": [17, 19], "entitl": 17, "stringent": 17, "johnson2013": [], "threshold": 17, "stretch": 17, "portal": 17, "knowyourmem": 17, "meme": 17, "wiser": 17, "absurd": 17, "072": 17, "heard": 17, "fight": 17, "uphil": 17, "battl": 17, "career": 17, "suicid": 17, "academia": 17, "imdb": 17, "tt0093779": 17, "morei": 17, "steal": 17, "johnson": [17, 19], "enthusiast": 17, "budget": 17, "cost": 17, "kick": 17, "astoundingli": 17, "unaccept": 17, "lax": 17, "termin": [7, 17], "analyi": 17, "willpow": 17, "ineffici": 17, "balloon": 17, "extern": 17, "foolproof": 17, "whywhywhi": [], "fault": 17, "ambrosiu": 17, "macrobiu": 17, "quotationspag": 17, "ambrosius_macrobiu": 17, "sin": 17, "explictli": 17, "attack": 17, "straw": 17, "dial": 17, "vitriol": 17, "gear": 17, "supposedli": 17, "specul": 17, "gun": 17, "722": 17, "cdot": 9, "80042036": 9, "86043481": 9, "35375252": 9, "36144597": 9, "56924183": 9, "34600569": 9, "44885781": 9, "2415587": 9, "02471366": 9, "02290263": 9, "mathrm": 9, "3600096748558": [], "52992391769343": [], "7044051060008": [], "003466334432083": [], "77112912667978": [], "099208297733181": [], "notelawlargenumb": 10, "129": [], "aka74": 19, "ieee": 19, "716": 19, "723": 19, "fis25": 19, "oliv": 19, "boyd": 19, "edinburgh": 19, "jef61": 19, "oxford": 19, "joh13": 19, "valen": 19, "proceed": 19, "academi": 19, "19313": 19, "19317": 19, "kr95": 19, "robert": 19, "studio": 7, "extenst": 7, "expos": 7, "constantli": 7, "sugar": 7, "tea": 7, "coffe": 7, "spoon": 7, "bowl": 7, "pour": 7, "spoonful": 7, "bake": 7, "crack": 7, "yoke": 7, "swee": 7, "declar": 7, "sweet_enough": 7, "num_sugar_spoon": 7, "thrown": 7, "ingredi": 7, "flour": 7, "cinnamon": 7, "salt": 7, "powerful": 7, "colon": 7, "mandatori": 7, "flibbertigibbet": 7, "random_stuff": 7, "new_th": 7, "unsupport": 7, "operand": 7, "strng": 7, "wednesdai": 7, "encompass": 7, "thursdai": 7, "fridai": 7, "sundai": 7, "weekend": 7, "statment": 7, "perspicaci": 7, "letter_count": 7, "retyp": 7, "measure_word": 7, "precoci": 7, "IF": 7, "IT": 7, "WILL": 7, "tupl": 7, "first_lett": 7, "new_word": 7, "_if_": 7, "_you_": 7, "_say_": 7, "_it_": 7, "_loud_": 7, "_enough_": 7, "_will_": 7, "_always_": 7, "_sound_": 7, "_precocious_": 7, "dog": 7, "bunni": 7, "nihilist": 7, "NOT": 7, "new_numb": 7, "list_of_list": 7, "list_of_string_list": 7, "flattened_list": 7, "all_flow": 7, "begonia": 7, "lilac": 7, "rose": 7, "pansi": 7, "foxglov": 7, "buttercup": 7, "sunflow": 7, "b_flower": 7, "823452": 7, "4435": 7, "9070878072634": 7, "3421": 7, "4345": 7, "modulo": 7, "AND": 7, "baldfac": 7, "shebang": 7, "dunno": 7, "futz": 7, "sublist": 7, "paus": 7, "inst": 7, "untouch": 7, "check_first_lett": 7, "input_list": 7, "target_lett": 7, "output_list": 7, "food": 7, "pickl": 7, "beet": 7, "burger": 7, "chees": 7, "pepper": 7, "pizza": 7, "cardamom": 7, "cabbag": 7, "gerner": 7, "wheter": 7, "target": 7, "dilettant": 7, "stipul": 16, "model3": 16, "lump": 16, "formula1": 16, "formula3": [], "anovaresult": 16, "653333": 16, "738333": 16, "520408": 16, "024242": 16, "formula2": 16, "reassur": 16, "ss_res_nul": 16, "ss_res_ful": 16, "7383339999999999": 16, "ms_diff": 16, "f_stat": 16, "520414551231913": 16, "predictor1": 16, "predictor2": 16, "uglier": 16, "1p": 16, "2p": 16, "4356583710217": [], "797182424268012": [], "2154850507139": [], "4022151683824": [], "03319490190297": [], "054039128997667": [], "134": [], "02536241152112": [], "474882295087165": [], "08779941812442": [], "351776403288921": [], "01626459089115": [], "96223614291537": [], "124": [], "33971433769008": [], "655330245673708": [], "17861038487763": [], "712377772498066": [], "951064421052": [], "932120719256922": [], "262157162740991": 10, "ipykernel_63299": [], "4220361125": 10, "1339756836": 10, "3591514384": 10, "53960547224054": [], "186167782018202": [], "17191341063791": [], "86103856998936": [], "04894765095658": [], "098657549401311": [], "ipykernel_63592": [], "5083916244877": 10, "72448042232567": 10, "95368145848558": 10, "12238658574764": 10, "93179094823645": 10, "95182846479696": 10, "ipykernel_7964": 10, "util": [13, 14], "outdatedpackagewarn": [13, 14], "latest": [13, 14], "outdated_ignor": [13, 14], "disabl": [13, 14], "apr": [], "2024": 15, "bc": [], "sigmahat": 15, "stand_r": 15, "ivan": 15, "savov": 15, "ivanistheon": 15, "attend": 16, "membership": 16, "rtfm1": 16, "frown": 16, "rtfm2": 16, "rtfm_agg": 16, "epsilon_p": 16, "limb": 16, "gush": 16, "648": 16, "6000": [], "0056": 16, "1568": 16, "2667": [], "0008": 16, "7th": 16, "supris": 16, "_stats_pi": 16, "1736": 16, "kurtosistest": 16, "5000": 16, "354": 16, "873": 16, "006": 16, "956": 16, "267": 16, "dress": 16, "costum": 16, "zoom": 16, "604": 16, "pariti": 16, "254": 16, "820": 16, "169": 16, "003": 16, "917": 16, "halloween": 16}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"why": [0, 7, 17], "do": [0, 2, 12, 13], "we": [0, 16], "learn": [0, 8, 20], "statist": [0, 4, 8, 9, 10, 11, 12, 14, 17, 20], "On": [0, 8, 14], "psycholog": [0, 1], "The": [0, 1, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "curs": 0, "belief": [0, 17], "bia": [0, 1], "cautionari": 0, "tale": 0, "simpson": 0, "s": [0, 4, 9, 12, 13, 14], "paradox": 0, "everydai": 0, "life": [0, 4], "There": 0, "more": [0, 3, 5, 6], "research": [0, 1, 11], "method": [0, 3], "than": 0, "A": [1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17], "brief": 1, "introduct": [1, 5, 9], "design": [1, 16], "measur": [1, 4], "some": [1, 6, 11, 16], "thought": 1, "about": [1, 3, 17], "operationalis": 1, "defin": [1, 10], "your": [1, 6, 11], "scale": 1, "nomin": 1, "ordin": 1, "interv": [1, 10], "ratio": 1, "continu": [1, 12], "versu": [1, 11, 16], "discret": 1, "variabl": [1, 2, 3, 4, 6], "complex": [1, 5], "assess": 1, "reliabl": 1, "role": 1, "predictor": 1, "outcom": [1, 16], "experiment": 1, "non": [1, 13, 16], "valid": 1, "studi": [1, 11], "intern": 1, "extern": 1, "construct": [1, 12, 13, 17], "face": 1, "ecolog": 1, "confound": 1, "artifact": 1, "other": [1, 9, 17], "threat": 1, "histori": 1, "effect": [1, 11, 12, 13, 14, 16], "matur": 1, "repeat": 1, "test": [1, 11, 12, 13, 14, 15, 16, 17], "select": [1, 15], "differenti": 1, "attrit": 1, "respons": 1, "regress": [1, 15, 16, 17], "mean": [1, 4, 6, 9, 10, 13, 14, 17], "demand": 1, "reactiv": 1, "placebo": 1, "situat": 1, "subpopul": 1, "fraud": 1, "decept": 1, "self": 1, "summari": [1, 3, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17], "get": [2, 4, 14], "start": [2, 3], "python": [2, 3, 4, 5, 9, 10, 12, 13, 14, 15, 16, 20], "instal": [2, 3], "us": [2, 3, 4, 7, 9, 13, 17], "code": 2, "thi": [2, 3, 16, 17], "book": [2, 3], "type": [2, 3, 11, 16, 17], "command": 2, "consol": 2, "Be": 2, "veri": 2, "care": 2, "avoid": 2, "typo": 2, "teeni": 2, "bit": 2, "flexibl": 2, "space": 2, "simpl": [2, 10], "calcul": [2, 4, 10, 14, 15, 16], "ad": 2, "subtract": 2, "multipli": 2, "divid": 2, "take": 2, "power": [2, 11], "right": [2, 9], "order": 2, "store": 2, "number": [2, 10], "concept": 3, "comment": [3, 12], "import": 3, "what": [3, 4, 9, 13, 16, 17], "librari": 3, "doe": [3, 9, 10, 16], "how": [3, 9, 10, 12, 14], "i": [3, 16], "list": [3, 6, 7], "object": 3, "activ": 3, "memori": 3, "remov": [3, 14], "from": [3, 6, 10, 13, 14], "workspac": 3, "load": 3, "save": [3, 5], "data": [3, 4, 5, 6, 11, 12, 13, 14, 15, 16, 17], "filesystem": 3, "path": 3, "csv": 3, "file": [3, 5], "datafram": [3, 6], "thing": 3, "know": 3, "check": [3, 13, 14, 15, 16], "regular": 3, "collect": 3, "interg": 3, "float": 3, "string": 3, "argument": 3, "find": [3, 17], "length": 3, "tupl": 3, "dictionari": 3, "combin": 3, "set": [3, 14, 16], "dynam": 3, "index": 3, "slice": [3, 6], "singl": [3, 4, 15], "valu": [3, 4, 11, 13, 15, 17], "rang": [3, 4], "between": [3, 11, 14, 15, 16], "end": 3, "nth": 3, "posit": [3, 13], "everi": 3, "item": [3, 6], "within": 3, "descript": 4, "central": [4, 10], "tendenc": 4, "median": 4, "differ": [4, 7, 9, 11, 12, 13, 16], "real": 4, "exampl": [4, 13, 14], "trim": 4, "mode": 4, "interquartil": 4, "absolut": 4, "deviat": [4, 10, 13], "varianc": [4, 14, 15, 16], "standard": [4, 10, 13, 16, 17], "which": 4, "skew": 4, "kurtosi": 4, "an": [4, 5, 14, 15, 16], "overal": 4, "describ": [4, 13], "frame": [4, 6], "score": 4, "correl": [4, 15], "strength": 4, "direct": 4, "relationship": [4, 14, 15], "coeffici": [4, 15], "interpret": [4, 10, 15, 16, 17], "handl": 4, "miss": 4, "case": [4, 15], "pairwis": [4, 14, 15], "epilogu": [4, 18], "good": [4, 12], "ar": [4, 9, 10, 16], "draw": 5, "graph": 5, "overview": 5, "graphic": 5, "plot": [5, 10, 13], "littl": 5, "color": 5, "titl": 5, "axi": 5, "label": 5, "font": 5, "size": [5, 11, 12, 13, 14, 16], "relat": 5, "matter": [5, 10], "open": 5, "box": 5, "histogram": 5, "boxplot": 5, "multipl": [5, 6, 14, 15], "altern": [5, 11, 12], "word": 5, "caution": 5, "violin": 5, "scatterplot": 5, "bar": 5, "imag": 5, "enough": 5, "now": 5, "wrangl": 6, "pull": 6, "out": 6, "content": 6, "tip": 6, "road": 6, "tabul": 6, "cross": 6, "convert": 6, "tabl": [6, 17], "count": [6, 16], "proport": 6, "transform": 6, "recod": 6, "creat": 6, "cut": 6, "numer": 6, "categori": [6, 16], "few": 6, "mathemat": 6, "function": [6, 7, 11, 15], "oper": 6, "round": 6, "row": 6, "wise": 6, "dice": 6, "pop": 6, "extract": [6, 17], "subset": 6, "sort": 6, "flip": 6, "merg": 6, "column": 6, "largest": 6, "smallest": 6, "transpos": 6, "join": 6, "concaten": 6, "reshap": 6, "wide": 6, "long": 6, "format": 6, "basic": [7, 9], "program": 7, "script": 7, "loop": 7, "condit": 7, "statement": 7, "comprehens": 7, "kind": [7, 15, 16], "nest": 7, "abstract": 7, "gener": [7, 15], "theori": [8, 9, 17], "limit": [8, 10], "logic": [8, 14], "reason": [8, 17], "without": 8, "make": [8, 11], "assumpt": [8, 12, 13, 14, 15, 16], "myth": 8, "probabl": [9, 11, 17], "frequentist": [9, 11], "view": [9, 11], "bayesian": [9, 11, 17], "And": 9, "who": 9, "introduc": [9, 13], "distribut": [9, 10, 11, 12], "binomi": 9, "work": [9, 13, 14], "normal": [9, 13, 14, 15, 16], "densiti": 9, "estim": [10, 13, 15], "unknown": 10, "quantiti": 10, "sampl": [10, 11, 12, 13, 17], "popul": 10, "random": 10, "most": 10, "much": 10, "you": [10, 14, 17], "don": 10, "t": [10, 13, 14, 17], "have": 10, "paramet": [10, 16], "law": 10, "larg": 10, "theorem": 10, "exist": [10, 16], "ani": 10, "confid": 10, "slight": 10, "mistak": [10, 11], "formula": [10, 14, 15], "hypothesi": [11, 12, 13, 15, 17], "menageri": 11, "hypothes": [11, 16], "null": [11, 12], "two": [11, 13, 14, 15, 16], "error": 11, "decis": 11, "critic": 11, "region": 11, "note": 11, "signific": [11, 15], "one": [11, 13, 14, 16], "side": [11, 13], "p": [11, 17], "softer": 11, "extrem": 11, "common": 11, "report": [11, 12], "result": [11, 12, 16, 17], "issu": 11, "propos": 11, "solut": 11, "run": [11, 14, 16], "practic": 11, "increas": 11, "consid": 11, "neyman": 11, "fisher": [11, 12], "trap": 11, "categor": 12, "analysi": [12, 16, 17], "chi": 12, "2": [12, 15], "fit": [12, 15], "card": 12, "gof": 12, "advanc": [12, 14], "specifi": [12, 16], "notat": 12, "independ": [12, 13, 17], "associ": 12, "our": [12, 16], "scipi": 12, "stat": 12, "pingouin": 12, "postscript": [12, 16], "correct": [12, 14], "exact": 12, "mcnemar": 12, "compar": [13, 14, 15, 16], "z": 13, "infer": 13, "problem": 13, "address": 13, "student": [13, 14], "pool": 13, "same": 13, "complet": 13, "neg": 13, "welch": 13, "pair": [13, 17], "One": 13, "cohen": 13, "d": 13, "qq": 13, "shapiro": 13, "wilk": 13, "wilcoxon": 13, "sever": 14, "wai": [14, 16], "anova": [14, 16, 17], "illustr": 14, "y": 14, "sum": [14, 16], "squar": [14, 16], "f": [14, 15, 16], "model": [14, 15, 16, 17], "comparison": [14, 16], "post": [14, 16], "hoc": [14, 16], "bonferroni": 14, "holm": 14, "write": [14, 17], "up": [14, 17], "robust": 14, "homogen": [14, 15, 16], "leven": [14, 16], "behind": 14, "kruskal": 14, "walli": 14, "addit": [14, 16], "detail": 14, "linear": [15, 16], "warn": 15, "quantifi": 15, "r": 15, "adjust": 15, "whole": 15, "individu": 15, "all": [15, 17], "standardis": 15, "three": 15, "residu": [15, 16], "anomal": 15, "factori": 16, "1": [], "balanc": 16, "interact": 16, "refer": 19, "mad": 14, "collinear": 15, "backward": 15, "elimin": 15, "caveat": 15, "degre": 16, "freedom": 16, "captur": 16, "allow": [], "exactli": 16, "main": 16, "chang": 16, "baselin": 16, "equival": 16, "binari": 16, "factor": [16, 17], "contrast": 16, "treatment": 16, "helmert": 16, "zero": 16, "unbalanc": 16, "coffe": 16, "iii": 16, "ii": [16, 17], "probabilist": 17, "ration": 17, "agent": 17, "likelihood": 17, "joint": 17, "updat": 17, "bay": 17, "rule": 17, "think": 17, "thei": 17, "evidentiari": 17, "can": 17, "believ": 17, "Is": 17, "realli": 17, "bad": 17, "conting": 17, "orthodox": 17, "text": 17, "plan": 17, "quick": 17, "refresh": 17, "version": 17, "best": 17, "includ": 17, "term": 17, "prior": 17, "befor": 17, "lie": 17, "while": 7, "syntax": 7, "pattern": 7}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}}) \ No newline at end of file