1 parent 6a0f1d3 commit 820b1ecCopy full SHA for 820b1ec
1 file changed
milestones/milestone-2/create_emdat_clean.py
@@ -72,10 +72,10 @@
72
73
df_clean.to_csv(OUTPUT_FILE, index=False)
74
75
-print(f'\n✓ Saved: {OUTPUT_FILE}')
76
-print(f'✓ Records: {len(df_clean):,}')
77
-print(f'✓ Year range: {int(df_clean["year"].min())}-{int(df_clean["year"].max())}')
78
-print(f'✓ Countries: {df_clean["iso"].nunique()}')
+print(f'\n Saved: {OUTPUT_FILE}')
+print(f' Records: {len(df_clean):,}')
+print(f' Year range: {int(df_clean["year"].min())}-{int(df_clean["year"].max())}')
+print(f' Countries: {df_clean["iso"].nunique()}')
79
80
print('\nDisaster type distribution:')
81
type_counts = df_clean['type'].value_counts()
0 commit comments