From 1b660f9621eee9bc19f1ecdf99d05ef3089abeba Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Wed, 6 Dec 2023 16:42:00 +0100 Subject: [PATCH] fix(script): Correct display of inclusion criteria table --- 02-data/supplementary/inclusion-criteria.tsv | 8 ++++++++ scoping_review.qmd | 5 +++-- 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 02-data/supplementary/inclusion-criteria.tsv diff --git a/02-data/supplementary/inclusion-criteria.tsv b/02-data/supplementary/inclusion-criteria.tsv new file mode 100644 index 0000000..41ef2c6 --- /dev/null +++ b/02-data/supplementary/inclusion-criteria.tsv @@ -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 diff --git a/scoping_review.qmd b/scoping_review.qmd index cf6f097..8d0a2e7 100644 --- a/scoping_review.qmd +++ b/scoping_review.qmd @@ -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’.