From aa355098b89283498b82212d7deb32755426677d Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 9 Jan 2024 18:12:52 +0100 Subject: [PATCH] fix(script): Use manual sample starting size For the time being, until I fix the flowchart completely, reverted to using a manual sample size in the beginning. --- scoping_review.qmd | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scoping_review.qmd b/scoping_review.qmd index 6489c6f..990a79a 100644 --- a/scoping_review.qmd +++ b/scoping_review.qmd @@ -434,9 +434,10 @@ and the sources will be added to the sample to undergo the same screening proces #| output: asis FULL_RAW_SAMPLE_NOTHING_REMOVED = 2396 +FULL_SAMPLE_DUPLICATES_REMOVED = 2381 nr_database_query_raw = len(bib_sample_raw_db.entries) -nr_out_duplicates = FULL_RAW_SAMPLE_NOTHING_REMOVED - len(bib_sample.entries) -nr_other_sources = (len(bib_sample.entries) + nr_out_duplicates) - nr_database_query_raw +nr_out_duplicates = FULL_RAW_SAMPLE_NOTHING_REMOVED - FULL_SAMPLE_DUPLICATES_REMOVED +nr_other_sources = (FULL_SAMPLE_DUPLICATES_REMOVED + nr_out_duplicates) - nr_database_query_raw all_keywords = [entry["keywords"] for entry in bib_sample.entries if "keywords" in entry.fields_dict.keys()] nr_out_superseded = len([1 for kw in all_keywords if "out::superseded" in kw])