fschwartzer commited on
Commit
b6f303c
1 Parent(s): 1cee5ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -103,7 +103,8 @@ else:
103
  col3 = st.columns(1) # You can use st.columns(1) to create a single column layout
104
 
105
  if not filtered_df.empty:
106
- data_string = filtered_df['Forecasts'].iloc[0]
 
107
 
108
  # Create a list to store data for each period
109
  data = []
 
103
  col3 = st.columns(1) # You can use st.columns(1) to create a single column layout
104
 
105
  if not filtered_df.empty:
106
+ tab_df = df[(df['Instituição'] == selected_instituicao)]
107
+ data_string = tab_df['Forecasts'].iloc[0]
108
 
109
  # Create a list to store data for each period
110
  data = []