Update app.py
Browse files
app.py
CHANGED
@@ -114,7 +114,7 @@ if uploaded_file:
|
|
114 |
|
115 |
# Create a Matplotlib figure for the bar chart
|
116 |
fig3, ax = plt.subplots(figsize=(10, 6))
|
117 |
-
monthly_expenses_df.plot(kind='bar',
|
118 |
ax.set_title('Monthly Spending vs Budget')
|
119 |
ax.set_ylabel('Amount ($)')
|
120 |
ax.set_xlabel('Month')
|
|
|
114 |
|
115 |
# Create a Matplotlib figure for the bar chart
|
116 |
fig3, ax = plt.subplots(figsize=(10, 6))
|
117 |
+
monthly_expenses_df.plot(kind='bar', ax=ax)
|
118 |
ax.set_title('Monthly Spending vs Budget')
|
119 |
ax.set_ylabel('Amount ($)')
|
120 |
ax.set_xlabel('Month')
|