fschwartzer commited on
Commit
53b9db6
1 Parent(s): 6aa4ff8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -12,7 +12,7 @@ import base64
12
  from io import BytesIO
13
  import sys
14
  import pydeck as pdk
15
- from ydata_profiling import ProfileReport
16
  import streamlit.components.v1 as components
17
 
18
  # Print the Python version
@@ -292,8 +292,9 @@ with tab3:
292
  else:
293
  st.warning(f"**Dados insuficientes para inferência do valor. Mínimo necessário:** {k_threshold}")
294
 
295
- import streamlit as st
296
-
 
297
  # Generate the profile report
298
  with st.spinner('Carregando análise...'):
299
  profile = ProfileReport(filtered_data, title="Análise Exploratória dos Dados", explorative=True)
 
12
  from io import BytesIO
13
  import sys
14
  import pydeck as pdk
15
+ from ydata_profiling import ProfileReport, ProfilingConfiguration
16
  import streamlit.components.v1 as components
17
 
18
  # Print the Python version
 
292
  else:
293
  st.warning(f"**Dados insuficientes para inferência do valor. Mínimo necessário:** {k_threshold}")
294
 
295
+ config = ProfilingConfiguration()
296
+ config.html.style.primary_color = '#FFD700'
297
+
298
  # Generate the profile report
299
  with st.spinner('Carregando análise...'):
300
  profile = ProfileReport(filtered_data, title="Análise Exploratória dos Dados", explorative=True)