|
10 | 10 | "- [website](https://seaborn.pydata.org/)" |
11 | 11 | ] |
12 | 12 | }, |
13 | | - { |
14 | | - "cell_type": "markdown", |
15 | | - "metadata": { |
16 | | - "lines_to_next_cell": 2 |
17 | | - }, |
18 | | - "source": [ |
19 | | - "## Recreating the Figure from the sulforaphane Paper" |
20 | | - ] |
21 | | - }, |
22 | 13 | { |
23 | 14 | "cell_type": "markdown", |
24 | 15 | "metadata": {}, |
25 | 16 | "source": [ |
| 17 | + "## Recreating the Figure from the sulforaphane Paper\n", |
26 | 18 | "Uses the data from [PXD04621](data/README.md) - using simulated data which looks\n", |
27 | 19 | "similar to the original data\n", |
28 | 20 | "([Marshall et. al. 2023)](https://www.sciencedirect.com/science/article/pii/S1756464623002451)).\n", |
29 | | - "" |
30 | | - ] |
31 | | - }, |
32 | | - { |
33 | | - "cell_type": "markdown", |
34 | | - "metadata": {}, |
35 | | - "source": [ |
| 21 | + "- [fake_growth_data.csv](data/growth/fake_growth_data.csv)\n", |
| 22 | + "\n", |
| 23 | + "\n", |
| 24 | + "\n", |
36 | 25 | "Take a look at this picture - do you think it is simple or complicated?\n", |
37 | 26 | "It is not trivial to recreate it in Python - but don't worry, we will guide through all steps and tricks on making an (almost) exact copy of that picture in this notebook (at least from our knowledge). Let's get started." |
38 | 27 | ] |
|
63 | 52 | "import matplotlib as mpl\n", |
64 | 53 | "import matplotlib.lines as mlines\n", |
65 | 54 | "import matplotlib.pyplot as plt\n", |
66 | | - "import numpy as np\n", |
67 | 55 | "import pandas as pd\n", |
68 | 56 | "import seaborn as sns\n", |
69 | 57 | "from matplotlib.ticker import MultipleLocator\n", |
|
0 commit comments