diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-01-24 11:23:51 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-01-24 11:23:51 -0600 |
commit | 055f5ddc3ba6b5772cd76fe7220f5cb212d2598c (patch) | |
tree | 3062f9b11974fe119306629e99a859abc1fbcc13 /app.py | |
parent | 441d7dc25c04da4c3b747af04c21868745e7029e (diff) | |
download | omaha-incidents-055f5ddc3ba6b5772cd76fe7220f5cb212d2598c.tar.gz omaha-incidents-055f5ddc3ba6b5772cd76fe7220f5cb212d2598c.tar.bz2 omaha-incidents-055f5ddc3ba6b5772cd76fe7220f5cb212d2598c.zip |
fix page title
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ df['year'] = df['date'].str[-4:] # Configure HTML layout app = Dash(__name__) app.layout = html.Div(children = [ - html.H1(children="Omaha Police Invidents", style={"textAlign":"center"}), + html.H1(children="Omaha Police Incidents", style={"textAlign":"center"}), html.Div([ html.H2(children="Totals per Category and Year", style={"textAlign":"center"}), dcc.Dropdown(df.sort_values("description").description.unique(), "INJURY", id="dropdown"), |