Car Crash Analysis

there is most car crashes in the summer due to non icy roads

there is the lowest amount of car crashes in the winter because icy roads and snow

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 ->