I am trying to plot the two line graphs on the same figure but the graphs are printed separately. I filtered the data and made two line graphs . How to merge both graphs on same figure?
code:
#getting columns with Primary type and arrest type
arrFalse=arrPri.loc[(arrPri["Primary Type"]== "ARSON") & (arrPri.Arrest == False),["count","Year"]]
arrTrue=arrPri.loc[(arrPri["Primary Type"]== "ARSON") & (arrPri.Arrest == True),["count","Year"]]
#plotting the graphs
arrFalse.plot(x="Year",y="count",kind="line",figsize=(10,5),color="red")
arrTrue.plot(x="Year",y="count",kind="line",figsize=(10,5),color="olive",linestyle="dashed")
plt.xlabel(uPri[i])
plt.legend(crimes.Arrest)
plt.title(uPri[i] + " Vs Crime count")
plt.show()
`