Skip to content

Commit 2cb32e1

Browse files
author
luward
committed
docs restructuring
1 parent c6791a1 commit 2cb32e1

18 files changed

+7
-5
lines changed
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Makefile renamed to docs/Makefile

File renamed without changes.

conf.py renamed to docs/conf.py

File renamed without changes.

index.rst renamed to docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
.. toctree::
2626
:maxdepth: 1
2727

28-
rust/replicate_descriptives.ipynb
28+
replicate_descriptives.ipynb
2929

3030
You can find a link to Rust's documentation of the nested fixed point algorithm `here <https://editorialexpress.com/jrust/nfxp.pdf>`_.
3131

make.bat renamed to docs/make.bat

File renamed without changes.

rust/replicate_descriptives.ipynb renamed to docs/replicate_descriptives.ipynb

+6-4
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,26 @@
2323
},
2424
{
2525
"cell_type": "code",
26-
"execution_count": 2,
26+
"execution_count": 12,
2727
"metadata": {},
2828
"outputs": [],
2929
"source": [
3030
"import os\n",
31+
"import sys\n",
3132
"\n",
3233
"import numpy as np\n",
3334
"import pandas as pd\n",
3435
"import matplotlib.pyplot as plt\n",
3536
"from scipy.signal import savgol_filter\n",
3637
"\n",
37-
"from data.data_processing import data_reading\n",
38-
"from data.data_processing import get_data_storage"
38+
"sys.path.insert(0, '../data/')\n",
39+
"from data_processing import data_reading\n",
40+
"from data_processing import get_data_storage"
3941
]
4042
},
4143
{
4244
"cell_type": "code",
43-
"execution_count": 3,
45+
"execution_count": 13,
4446
"metadata": {},
4547
"outputs": [],
4648
"source": [

0 commit comments

Comments
 (0)