Spaces:
Sleeping
Sleeping
andrewammann
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,7 @@ df_grouped.columns = ['Neighborhood', 'Total Crashes']
|
|
11 |
|
12 |
# Initialize the Dash app
|
13 |
app = Dash(__name__)
|
|
|
14 |
|
15 |
# Create a bar chart
|
16 |
fig = px.bar(df_grouped, x='Neighborhood', y='Total Crashes', title='Total Traffic Crashes by Neighborhood in Cincinnati')
|
|
|
11 |
|
12 |
# Initialize the Dash app
|
13 |
app = Dash(__name__)
|
14 |
+
server = app.server
|
15 |
|
16 |
# Create a bar chart
|
17 |
fig = px.bar(df_grouped, x='Neighborhood', y='Total Crashes', title='Total Traffic Crashes by Neighborhood in Cincinnati')
|