Skip to content

Commit

Permalink
Fix heading levels in raw data notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
Y0dler committed Oct 13, 2024
1 parent 4fbaf03 commit 54bd0cb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 28 deletions.
8 changes: 2 additions & 6 deletions docs/source/notebooks/Create_results_in_figure_2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
"metadata": {},
"outputs": [],
"source": [
"%load_ext autoreload\n",
"%autoreload 2\n",
"\n",
"import pandas\n",
"import numpy as np\n",
"import arviz as az\n",
"from pathlib import Path\n",
Expand All @@ -28,7 +24,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Exemplary result with a single peak"
"## Exemplary result with a single peak"
]
},
{
Expand Down Expand Up @@ -704,7 +700,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Exemplary result with a double peak"
"## Exemplary result with a double peak"
]
},
{
Expand Down
13 changes: 4 additions & 9 deletions docs/source/notebooks/Create_validation_plot_from_raw_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,9 @@
"metadata": {},
"outputs": [],
"source": [
"%load_ext autoreload\n",
"%autoreload 2\n",
"\n",
"import arviz as az\n",
"import json\n",
"import numpy as np\n",
"import pandas\n",
"import pymc as pm\n",
"from matplotlib import pyplot as plt\n",
"from pathlib import Path"
]
Expand All @@ -31,7 +26,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 1) Preparation of evaluation of synthetic data (test 1)"
"# Preparation of evaluation of synthetic data (test 1)"
]
},
{
Expand All @@ -48,7 +43,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 2) Prepartion of border-line cases normal vs. skew normal (test 2)"
"# Prepartion of border-line cases normal vs. skew normal (test 2)"
]
},
{
Expand Down Expand Up @@ -78,7 +73,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 3) Prepartion of comparison to MultiQuant (test 3)"
"# Prepartion of comparison to MultiQuant (test 3)"
]
},
{
Expand All @@ -96,7 +91,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 4) Plotting in one graph (for PeakPerformance paper)"
"# Plotting in one graph (for PeakPerformance paper)"
]
},
{
Expand Down
20 changes: 7 additions & 13 deletions docs/source/notebooks/Processing_test_1_raw_data.ipynb
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Process raw data from synthetic tests"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"%load_ext autoreload\n",
"%autoreload 2\n",
"\n",
"import arviz as az\n",
"import json\n",
"import numpy as np\n",
"import pandas\n",
"import pymc as pm\n",
"from matplotlib import pyplot as plt\n",
"from pathlib import Path"
]
Expand All @@ -36,13 +37,6 @@
"parameters = [\"mean\", \"std\", \"area\", \"height\", \"alpha\", \"baseline_intercept\", \"baseline_slope\"]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Prepare data in df_results"
]
},
{
"cell_type": "code",
"execution_count": 5,
Expand Down

0 comments on commit 54bd0cb

Please sign in to comment.