fix(script): Fixed paranthesis in scoping calculation

This commit is contained in:
Marty Oehme 2024-02-17 17:31:20 +01:00
parent 42222447dc
commit b89ab5f5d9
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -453,7 +453,7 @@ flowchart TD;
dedup -- "Title screening ({nr_out_title} excluded)" --> title_screened["Records after titles screened (n={len(bib_sample.entries) - nr_out_title})"];
title_screened -- "Abstract screening ({nr_out_abstract} excluded)"--> abstract_screened["Records after abstracts screened (n={len(bib_sample.entries)-nr_out_title-nr_out_abstract}"];
title_screened -- "Abstract screening ({nr_out_abstract} excluded)"--> abstract_screened["Records after abstracts screened (n={len(bib_sample.entries)-nr_out_title-nr_out_abstract})"];
abstract_screened -- " Language screening ({nr_out_language} excluded) "--> language_screened["Records after language screened (n={len(bib_sample.entries)-nr_out_title-nr_out_abstract-nr_out_language})"];