engralimalik commited on
Commit
e833f6e
·
verified ·
1 Parent(s): d88597f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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', x='Month', y=['Actual', 'Budget'], ax=ax)
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')