From 2cf2a03d87bfcc76ba4fcf015b20711d99b96ada Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sat, 9 Dec 2023 18:58:27 +0100 Subject: [PATCH] fix(script): Remove visualization per literature type For the time being removed the distinction between gray and white literature as our sample did not lend itself to the dissection. May reintroduce later. --- scoping_review.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoping_review.qmd b/scoping_review.qmd index 3320c37..5333a8c 100644 --- a/scoping_review.qmd +++ b/scoping_review.qmd @@ -507,7 +507,7 @@ bib_df["literature"] = np.where(bib_df["pubtype"].str.contains("article", case=F bib_df["literature"] = bib_df["literature"].astype("category") # plot by year, distinguished by literature type -ax = sns.countplot(bib_df, x="year", hue="literature") +ax = sns.countplot(bib_df, x="year") ax.tick_params(axis='x', rotation=45) # ax.set_xlabel("") plt.tight_layout()