Rename app.py to app_working.py
Browse files- app.py → app_working.py +1 -1
app.py → app_working.py
RENAMED
|
@@ -69,7 +69,7 @@ def get_dashboard():
|
|
| 69 |
return fig
|
| 70 |
|
| 71 |
counts = df["type"].value_counts()
|
| 72 |
-
counts.plot(kind="
|
| 73 |
|
| 74 |
ax.set_title("Vehicle Classification Dashboard")
|
| 75 |
ax.set_xlabel("Vehicle Type")
|
|
|
|
| 69 |
return fig
|
| 70 |
|
| 71 |
counts = df["type"].value_counts()
|
| 72 |
+
counts.plot(kind="bar", ax=ax)
|
| 73 |
|
| 74 |
ax.set_title("Vehicle Classification Dashboard")
|
| 75 |
ax.set_xlabel("Vehicle Type")
|