Committing binning

This commit is contained in:
2023-03-30 16:19:43 +02:00
parent 17b3e05b41
commit eb4861ecc9
3 changed files with 6 additions and 7 deletions

View File

@@ -22,11 +22,11 @@ games_fig2_pre = sns.histplot(data = games_pre, x = "Year", hue = "Genre", multi
plt.show()
plt.xticks(rotation = 90)
games_fig_dur = sns.barplot(data = games_dur, x = "Year", y = "NA_Sales", estimator=count_nonzero)
games_fig_dur = sns.barplot(data = games_dur, x = "Year", y = "NA_Sales")
plt.show()
plt.xticks(rotation = 90)
games_fig_pos = sns.barplot(data = games_pos, x = "Year", y = "NA_Sales", estimator=count_nonzero)
games_fig_pos = sns.barplot(data = games_pos, x = "Year", y = "NA_Sales")
plt.show()
plt.xticks(rotation = 90)