fschwartzer commited on
Commit
4f8876e
1 Parent(s): 7b14097

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -63,7 +63,7 @@ adjusted_rows = []
63
 
64
  # Iterate through each unique 'Conta' within the selected 'Instituição'
65
  for conta in instituicao_df['Conta'].unique():
66
- conta_df = instituicao_df[instituicao_df['Conta'] == conta]
67
 
68
  # Check if 'Linear Regression' is available for this 'Conta'
69
  if len(conta_df['Modelo'].unique()) > 1 and "Linear Regression" in conta_df['Modelo'].unique():
 
63
 
64
  # Iterate through each unique 'Conta' within the selected 'Instituição'
65
  for conta in instituicao_df['Conta'].unique():
66
+ conta_df = instituicao_df[instituicao_df['Conta'] == selected_conta]
67
 
68
  # Check if 'Linear Regression' is available for this 'Conta'
69
  if len(conta_df['Modelo'].unique()) > 1 and "Linear Regression" in conta_df['Modelo'].unique():