fschwartzer commited on
Commit
3af594d
1 Parent(s): 8851c28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -296,10 +296,10 @@ with tab3:
296
  # Generate the profile report
297
  with st.spinner('Carregando análise...'):
298
  profile = ProfileReport(filtered_data, title="Análise Exploratória dos Dados", explorative=True)
 
299
  profile_html = profile.to_html()
300
 
301
  # Replace English text with Portuguese
302
- profile_html = profile_html.config.html.style.primary_color = '#FFD700'
303
  profile_html = profile_html.replace("Overview", "Visão geral")
304
  profile_html = profile_html.replace("Alerts", "Alertas")
305
  profile_html = profile_html.replace("Reproduction", "Reprodução")
 
296
  # Generate the profile report
297
  with st.spinner('Carregando análise...'):
298
  profile = ProfileReport(filtered_data, title="Análise Exploratória dos Dados", explorative=True)
299
+ profile.config.html.style.primary_color = '#FFD700'
300
  profile_html = profile.to_html()
301
 
302
  # Replace English text with Portuguese
 
303
  profile_html = profile_html.replace("Overview", "Visão geral")
304
  profile_html = profile_html.replace("Alerts", "Alertas")
305
  profile_html = profile_html.replace("Reproduction", "Reprodução")