XPMaster commited on
Commit
339bffb
1 Parent(s): fde69ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -65,6 +65,7 @@ if forecast is not None:
65
  forecast_df = pd.DataFrame(forecast, index=forecast_index, columns=['Forecast'])
66
  # Ensure the index is correctly formatted as 'YYYY-MM'
67
  forecast_df.index = forecast_df.index.strftime('%Y-%m')
 
68
  st.line_chart(forecast_df)
69
  # ... [rest of the code]
70
 
 
65
  forecast_df = pd.DataFrame(forecast, index=forecast_index, columns=['Forecast'])
66
  # Ensure the index is correctly formatted as 'YYYY-MM'
67
  forecast_df.index = forecast_df.index.strftime('%Y-%m')
68
+ st.table(forecast_df)
69
  st.line_chart(forecast_df)
70
  # ... [rest of the code]
71