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.
This commit is contained in:
Marty Oehme 2023-12-09 18:58:27 +01:00
parent 56e18b1285
commit 2cf2a03d87
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -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()