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
|
||||
render:
|
||||
- presentation_summary.md
|
||||
- notes.md
|
||||
- notes.qmd
|
||||
- scoping_review.qmd
|
||||
|
||||
format:
|
||||
|
|
|
@ -19,6 +19,21 @@ title: Inequalities and the world of work
|
|||
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
|
||||
|
||||
## Defining the world of work
|
Loading…
Reference in a new issue