fschwartzer commited on
Commit
ea56cb7
1 Parent(s): 15d1d7a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -95,7 +95,7 @@ filtered_df = pd.concat(adjusted_rows)
95
  #col1, col2, col3 = st.columns(3) # This divides the page into three equal parts
96
 
97
  # Set custom width for columns
98
- col1, col2, col3 = st.columns([2,1,1])
99
 
100
  # Display the Forecasts values in the first column
101
  col1.header('Composição da RLIT')
@@ -204,8 +204,6 @@ else:
204
  # Display the table in the third column
205
  #col3 = st.columns(1) # You can use st.columns(1) to create a single column layout
206
 
207
- col4, col5 = st.columns([1, 1])
208
-
209
  if not filtered_df.empty:
210
  # Filter the DataFrame for the selected institution
211
  tab_df = df[df['Instituição'] == selected_instituicao]
 
95
  #col1, col2, col3 = st.columns(3) # This divides the page into three equal parts
96
 
97
  # Set custom width for columns
98
+ col1, col2, col3, col4, col5 = st.columns([2,1,1,1,1])
99
 
100
  # Display the Forecasts values in the first column
101
  col1.header('Composição da RLIT')
 
204
  # Display the table in the third column
205
  #col3 = st.columns(1) # You can use st.columns(1) to create a single column layout
206
 
 
 
207
  if not filtered_df.empty:
208
  # Filter the DataFrame for the selected institution
209
  tab_df = df[df['Instituição'] == selected_instituicao]