Skip to content

Commit

Permalink
deploy: 3fa766a
Browse files Browse the repository at this point in the history
  • Loading branch information
poldrack committed Apr 1, 2024
1 parent 2544b55 commit 3159403
Show file tree
Hide file tree
Showing 231 changed files with 14,682 additions and 18,830 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 30335cb2e3d23d8b5f649a094b762bd1
config: 75f8c34de863dec7a003520074cc7920
tags: 645f666f9bcd5a90fca523b33c5a78b7
1,080 changes: 643 additions & 437 deletions 01-IntroductionToPython.html

Large diffs are not rendered by default.

833 changes: 520 additions & 313 deletions 02-SummarizingData.html

Large diffs are not rendered by default.

764 changes: 494 additions & 270 deletions 03-DataVisualization.html

Large diffs are not rendered by default.

771 changes: 488 additions & 283 deletions 04-FittingSimpleModels.html

Large diffs are not rendered by default.

675 changes: 443 additions & 232 deletions 05-Probability.html

Large diffs are not rendered by default.

688 changes: 442 additions & 246 deletions 06-Sampling.html

Large diffs are not rendered by default.

651 changes: 431 additions & 220 deletions 07-ResamplingAndSimulation.html

Large diffs are not rendered by default.

646 changes: 429 additions & 217 deletions 08-HypothesisTesting.html

Large diffs are not rendered by default.

663 changes: 436 additions & 227 deletions 09-StatisticalPower.html

Large diffs are not rendered by default.

836 changes: 449 additions & 387 deletions 10-BayesianStatistics.html

Large diffs are not rendered by default.

767 changes: 429 additions & 338 deletions 11-ModelingCategoricalRelationships.html

Large diffs are not rendered by default.

1,031 changes: 459 additions & 572 deletions 13-GeneralLinearModel.html

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed _images/03-DataVisualization_11_0.png
Binary file not shown.
Binary file removed _images/03-DataVisualization_14_1.png
Binary file not shown.
Binary file removed _images/03-DataVisualization_16_1.png
Binary file not shown.
Binary file removed _images/03-DataVisualization_21_1.png
Binary file not shown.
Binary file removed _images/03-DataVisualization_23_1.png
Binary file not shown.
Binary file removed _images/03-DataVisualization_26_1.png
Binary file not shown.
Binary file removed _images/03-DataVisualization_28_1.png
Binary file not shown.
Binary file removed _images/03-DataVisualization_30_1.png
Binary file not shown.
Binary file removed _images/03-DataVisualization_33_0.png
Binary file not shown.
Binary file removed _images/03-DataVisualization_7_0.png
Binary file not shown.
Binary file removed _images/03-DataVisualization_9_0.png
Binary file not shown.
Binary file removed _images/04-FittingSimpleModels_46_1.png
Binary file not shown.
Binary file removed _images/04-FittingSimpleModels_48_1.png
Binary file not shown.
Binary file removed _images/06-Sampling_11_0.png
Binary file not shown.
Binary file removed _images/06-Sampling_13_1.png
Binary file not shown.
Binary file removed _images/06-Sampling_5_1.png
Binary file not shown.
Binary file removed _images/06-Sampling_7_2.png
Binary file not shown.
Binary file removed _images/07-ResamplingAndSimulation_1_0.png
Binary file not shown.
Binary file removed _images/07-ResamplingAndSimulation_7_0.png
Binary file not shown.
Binary file removed _images/09-StatisticalPower_5_0.png
Binary file not shown.
Binary file removed _images/10-BayesianStatistics_3_0.png
Binary file not shown.
Binary file removed _images/10-BayesianStatistics_5_1.png
Binary file not shown.
Binary file removed _images/10-BayesianStatistics_7_1.png
Binary file not shown.
Binary file removed _images/13-GeneralLinearModel_11_1.png
Binary file not shown.
Binary file removed _images/13-GeneralLinearModel_15_1.png
Diff not rendered.
Binary file removed _images/13-GeneralLinearModel_17_1.png
Diff not rendered.
Binary file removed _images/13-GeneralLinearModel_23_1.png
Diff not rendered.
Binary file removed _images/13-GeneralLinearModel_3_1.png
Diff not rendered.
Binary file removed _images/13-GeneralLinearModel_9_0.png
Diff not rendered.
1 change: 0 additions & 1 deletion _sources/07-ResamplingAndSimulation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"cell_type": "markdown",
"metadata": {},
"source": [

"# Resampling and simulation\n",
"\n",
"## Generating random samples\n",
Expand Down
6 changes: 3 additions & 3 deletions _sources/10-BayesianStatistics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"lines_to_next_cell": 3
},
"metadata": {},
"outputs": [],
"source": [
"\n",
Expand All @@ -31,6 +29,8 @@
"posterior\n",
"\n",
"\n",
"\n",
"\n",
"\n"
]
},
Expand Down

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions _sphinx_design_static/design-tabs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
var sd_labels_by_text = {};

function ready() {
const li = document.getElementsByClassName("sd-tab-label");
for (const label of li) {
syncId = label.getAttribute("data-sync-id");
if (syncId) {
label.onclick = onLabelClick;
if (!sd_labels_by_text[syncId]) {
sd_labels_by_text[syncId] = [];
}
sd_labels_by_text[syncId].push(label);
}
}
}

function onLabelClick() {
// Activate other inputs with the same sync id.
syncId = this.getAttribute("data-sync-id");
for (label of sd_labels_by_text[syncId]) {
if (label === this) continue;
label.previousElementSibling.checked = true;
}
window.localStorage.setItem("sphinx-design-last-tab", syncId);
}

document.addEventListener("DOMContentLoaded", ready, false);
Loading

0 comments on commit 3159403

Please sign in to comment.