wow-inequalities/00-notebooks/test-magma.qmd
Marty Oehme 95ad5ed641
chore(data): Merge zotero library exports
To not double-commit every library change, we simply export ALL of
the zotero library into a single file in the 'intermediate' data
directory. Technically this still works just as well since it
still reflects our 'intermediate' stage of tagging, screening,
keywording the library contents. It just contains the non-sampled
contents as well now.
2024-01-06 09:52:08 +01:00

56 lines
1.1 KiB
Plaintext

---
bibliography: 02-data/intermediate/zotero-library.bib
csl: /home/marty/documents/library/utilities/styles/APA-7.csl
papersize: A4
linestretch: 1.5
fontfamily: lmodern
fontsize: "12"
geometry:
- left=2.2cm
- right=3.5cm
- top=2.5cm
- bottom=2.5cm
toc: false
link-citations: true
link-bibliography: true
number-sections: false
lang: en
title: Scoping review on 'what works'
subtitle: Addressing inequalities in the World of Work
filters:
- src/pandoc-to-zotero-live.lua
zotero:
library: wow-inequalities
client: zotero
csl-style: apa
---
```{python}
#| echo: false
from pathlib import Path
DATA_DIR=Path("./02-data")
BIB_PATH = DATA_DIR.joinpath("raw/01_wos-sample_2023-11-02")
## 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")
```
```{python}
rng = np.random.RandomState(0)
x = np.linspace(0, 10, 500)
y = np.cumsum(rng.randn(500, 6), 0)
```
```{python}
# same plotting code as above!
plt.plot(x, y)
plt.legend('ABCDEF', ncol=2, loc='upper left');
```