there is most car crashes in the summer due to non icy roads
import pandas as pd
import seaborn as sns; sns.set()
import matplotlib.pyplot as plt
crashes = pd.read_csv('./CrashReport.csv')
ax = sns.lineplot(x="Month", y="Total", data=crashes, sort=False)
plt.show()
this is code for car crash analysis (written in python) results ->