fschwartzer commited on
Commit
da0d4b5
1 Parent(s): 098ca40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -43,6 +43,8 @@ with st.sidebar:
43
  selected_conta = st.selectbox('Seleciona Conta', df['Conta'].unique())
44
 
45
  # Filter the DataFrame based on selected values
 
 
46
 
47
  # Set custom width for columns
48
  col1_width = 600
 
43
  selected_conta = st.selectbox('Seleciona Conta', df['Conta'].unique())
44
 
45
  # Filter the DataFrame based on selected values
46
+ filtered_df = df[(df['Instituição'] == selected_instituicao) & (df['Conta'] == selected_conta)]
47
+
48
 
49
  # Set custom width for columns
50
  col1_width = 600