fschwartzer commited on
Commit
326e4b3
1 Parent(s): 6bc40c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -48,11 +48,13 @@ filtered_df = df[(df['Instituição'] == selected_instituicao) & (df['Conta'] ==
48
 
49
  # Display the Forecasts values as line plots
50
  if not filtered_df.empty:
51
- st.subheader('Forecasts Line Plots')
52
 
53
  # Create a list to store data for each period
54
  data = []
55
 
 
 
56
  # Split the string into lines
57
  lines = data_string.split('\n')
58
 
 
48
 
49
  # Display the Forecasts values as line plots
50
  if not filtered_df.empty:
51
+ st.subheader('Gráfico com previsões')
52
 
53
  # Create a list to store data for each period
54
  data = []
55
 
56
+ data_string = filtered_df['Forecasts'].iloc[0]
57
+
58
  # Split the string into lines
59
  lines = data_string.split('\n')
60