Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
e70454f
1
Parent(s):
d5fb48d
Update app.py
Browse files
app.py
CHANGED
@@ -274,30 +274,12 @@ with tab3:
|
|
274 |
else:
|
275 |
st.warning(f"**Dados insuficientes para inferência do valor. Mínimo necessário:** {k_threshold}")
|
276 |
|
277 |
-
# CSS para alterar as cores
|
278 |
-
custom_css = """
|
279 |
-
<style>
|
280 |
-
.variable-title {
|
281 |
-
color: #FFD700; /* Amarelo Ouro */
|
282 |
-
}
|
283 |
-
.tab-title {
|
284 |
-
color: #FFD700; /* Amarelo Ouro */
|
285 |
-
}
|
286 |
-
/* Adicione mais seletores conforme necessário */
|
287 |
-
</style>
|
288 |
-
"""
|
289 |
-
|
290 |
-
# Injeta o CSS na página
|
291 |
-
st.markdown(custom_css, unsafe_allow_html=True)
|
292 |
-
|
293 |
# Generate the profile report
|
294 |
with st.spinner('Carregando análise...'):
|
295 |
profile = ProfileReport(filtered_data, title="Análise Exploratória dos Dados", explorative=True)
|
296 |
print(profile.config.json(indent=4))
|
297 |
profile.config.html.style.primary_colors = ['#FFD700', '#FFD700', '#FFD700'] # Define todas as cores primárias para amarelo ouro
|
298 |
profile_html = profile.to_html()
|
299 |
-
|
300 |
-
profile_html = custom_css + profile_html
|
301 |
|
302 |
# Replace English text with Portuguese
|
303 |
profile_html = profile_html.replace("Overview", "Visão geral")
|
|
|
274 |
else:
|
275 |
st.warning(f"**Dados insuficientes para inferência do valor. Mínimo necessário:** {k_threshold}")
|
276 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
# Generate the profile report
|
278 |
with st.spinner('Carregando análise...'):
|
279 |
profile = ProfileReport(filtered_data, title="Análise Exploratória dos Dados", explorative=True)
|
280 |
print(profile.config.json(indent=4))
|
281 |
profile.config.html.style.primary_colors = ['#FFD700', '#FFD700', '#FFD700'] # Define todas as cores primárias para amarelo ouro
|
282 |
profile_html = profile.to_html()
|
|
|
|
|
283 |
|
284 |
# Replace English text with Portuguese
|
285 |
profile_html = profile_html.replace("Overview", "Visão geral")
|