chore(scripts): Move notes to notes.qmd file
Required for computational cells to be executed by quarto. Also imported all the standard stuff for python ds to work.
This commit is contained in:
parent
b7e76b635a
commit
3a4a7b5621
2 changed files with 16 additions and 1 deletions
|
@ -3,7 +3,7 @@ project:
|
||||||
output-dir: 04-outputs
|
output-dir: 04-outputs
|
||||||
render:
|
render:
|
||||||
- presentation_summary.md
|
- presentation_summary.md
|
||||||
- notes.md
|
- notes.qmd
|
||||||
- scoping_review.qmd
|
- scoping_review.qmd
|
||||||
|
|
||||||
format:
|
format:
|
||||||
|
|
|
@ -19,6 +19,21 @@ title: Inequalities and the world of work
|
||||||
subtitle: Conceptual Definitions and Key Terms
|
subtitle: Conceptual Definitions and Key Terms
|
||||||
---
|
---
|
||||||
|
|
||||||
|
```{python}
|
||||||
|
#| echo: false
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
## standard imports
|
||||||
|
from IPython.core.display import Markdown as md
|
||||||
|
import numpy as np
|
||||||
|
import pandas as pd
|
||||||
|
from matplotlib import pyplot as plt
|
||||||
|
import seaborn as sns
|
||||||
|
from tabulate import tabulate
|
||||||
|
|
||||||
|
sns.set_style("whitegrid")
|
||||||
|
```
|
||||||
|
|
||||||
# Definitions
|
# Definitions
|
||||||
|
|
||||||
## Defining the world of work
|
## Defining the world of work
|
Loading…
Reference in a new issue