-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgas
18 lines (15 loc) · 912 Bytes
/
gas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
html.Div(
className="six columns",
children=[
html.H6(children='Over 25 High school completion Vs Police shootings'),
dcc.Graph(
id='High School',
figure=hs_fig
),
html.H6(children=f'Correlation coeficient {round(hs_corr, 2)}'),
html.H6(children=f'Interpretation'),
html.P(children='The percentage of high school graduates over 25 moderately affects compared to the other variables Police Shootings. '
'The correlation high is moderately weak and shows that percentage of high school graduates over 25 years '
'disproportionately influences police shootings')
]
),