[O] Reduce bin size

This commit is contained in:
Hykilpikonna
2021-11-24 16:02:49 -05:00
parent 94005cc9d9
commit acd053c303
+1 -1
View File
@@ -109,7 +109,7 @@ def view_covid_tweets_pop(users: list[ProcessedUser],
plt.title(f'COVID-related popularity ratios for {sample_name}')
plt.xticks(rotation=90)
plt.tight_layout()
plt.hist(x_list, bins=100, color='#ffcccc')
plt.hist(x_list, bins=40, color='#ffcccc')
plt.axvline([1], color='lightgray')
plt.show()