fix(script): Import dataframes directly from source
This commit is contained in:
parent
8f64604def
commit
2b7bb5c4e7
3 changed files with 3 additions and 3 deletions
|
@ -56,7 +56,7 @@ sns.set_style("whitegrid")
|
|||
#| label: load-dataframes
|
||||
#| echo: false
|
||||
#| output: false
|
||||
from src.process.generate_dataframes import df, df_by_intervention, validities
|
||||
from src import df, df_by_intervention, validities
|
||||
```
|
||||
|
||||
{{< portrait >}}
|
||||
|
|
|
@ -32,7 +32,7 @@ sns.set_style("whitegrid")
|
|||
|
||||
from src import globals as g
|
||||
|
||||
from src.process.generate_dataframes import bib_sample_raw_db, bib_sample
|
||||
from src import bib_sample
|
||||
|
||||
# load relevant studies
|
||||
from src.extract import load_data
|
||||
|
|
|
@ -40,7 +40,7 @@ sns.set_style("whitegrid")
|
|||
#| label: load-dataframes
|
||||
#| echo: false
|
||||
#| output: false
|
||||
from src.process.generate_dataframes import df, df_by_intervention, validities
|
||||
from src import df, df_by_intervention, validities
|
||||
```
|
||||
|
||||
<!-- pagebreak to separate from TOC -->
|
||||
|
|
Loading…
Reference in a new issue