fix(script): Correct display of inclusion criteria table
This commit is contained in:
parent
d9cd5fad1a
commit
1b660f9621
2 changed files with 11 additions and 2 deletions
8
02-data/supplementary/inclusion-criteria.tsv
Normal file
8
02-data/supplementary/inclusion-criteria.tsv
Normal file
|
@ -0,0 +1,8 @@
|
|||
Parameter Inclusion criteria Exclusion criteria
|
||||
Time frame study published in or after 2000 study published before 2000
|
||||
Study type primary research opinion piece, editorial, commentary, news article, literature review
|
||||
Study recency most recent publication of study gray literature superseded by white literature publication
|
||||
Study focus inequality or labour market outcomes as primary outcome (dependent variable) neither inequality nor labour market outcomes as dependent variable
|
||||
policy measure or strategy as primary intervention (independent variable) no policy measure/strategy as intervention or relationship unclear
|
||||
specifically relates to some dimension of world of work exists outside world of work for both independent and dependent variables
|
||||
focus on dimension of inequality in analysis no focus on mention of inequality in analysis
|
|
|
@ -519,11 +519,12 @@ It restricts studies to those that comprise primary research published after 200
|
|||
with a focus on the narrowing criteria specified in @tbl-inclusion-criteria.
|
||||
|
||||
```{python}
|
||||
#| echo: false
|
||||
#| label: tbl-inclusion-criteria
|
||||
#| fig-cap: Study inclusion and exclusion scoping criteria {#tbl-inclusion-criteria}
|
||||
#| tbl-cap: Study inclusion and exclusion scoping criteria {#tbl-inclusion-criteria}
|
||||
|
||||
inclusion_criteria = pd.read_csv("02-data/supplementary/inclusion-criteria.tsv", sep="\t")
|
||||
md(tabulate(inclusion_criteria, showindex=False, headers="firstrow", tablefmt="grid"))
|
||||
md(tabulate(inclusion_criteria, showindex=False, headers="keys", tablefmt="grid"))
|
||||
```
|
||||
|
||||
To facilitate the screening process, with the help of 'Zotero' reference manager a system of keywords is used to tag individual studies in the sample with their reason for exclusion,such as ‘excluded::language’, ‘excluded::title’, ‘excluded::abstract’, and ‘excluded::superseded’.
|
||||
|
|
Loading…
Reference in a new issue