POGGU
This commit is contained in:
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -41,11 +41,11 @@ games_fig_pos = sns.histplot(data = games_pos, x = "Year")
|
|||||||
plt.show()
|
plt.show()
|
||||||
|
|
||||||
plt.xticks(rotation = 90)
|
plt.xticks(rotation = 90)
|
||||||
crime_CA_fig = sns.histplot(data = crime_CA, x = "year")
|
crime_CA_fig = sns.barplot(data = crime_CA, x = "year", y = 'incident_sum')
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|
||||||
plt.xticks(rotation = 90)
|
plt.xticks(rotation = 90)
|
||||||
crime_US_fig = sns.histplot(data = crime_US, x = "report_year")
|
crime_US_fig = sns.barplot(data = crime_US, x = "report_year", y = "sum_violence")
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|
||||||
games_dur['Violent_US'] = crime_US['violent_crimes']
|
games_dur['Violent_US'] = crime_US['violent_crimes']
|
||||||
|
|||||||
Reference in New Issue
Block a user