[+] Hold down E to full screen image

This commit is contained in:
Hykilpikonna
2021-11-25 11:27:44 -05:00
parent 0b9838b51b
commit 98b4d92781
3 changed files with 21 additions and 6 deletions
+1
View File
@@ -233,6 +233,7 @@ def report_histograms(sample: Sample) -> None:
x = [f.data for f in sample.frequencies]
title = f'COVID-related posting frequency for {sample.name}'
report_histogram(x, f'freq/{sample.name}-hist-outliers.png', title, False, 100)
x = [p for p in x if p > 0.0005]
report_histogram(x, f'freq/{sample.name}-hist.png', title, True)
x = [f.data for f in sample.popularity_ratios]