Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
a786de5
1
Parent(s):
f3228b6
Update app.py
Browse files
app.py
CHANGED
@@ -292,6 +292,7 @@ with tab3:
|
|
292 |
else:
|
293 |
st.warning(f"**Dados insuficientes para inferência do valor. Mínimo necessário:** {k_threshold}")
|
294 |
|
295 |
-
|
296 |
-
|
297 |
-
|
|
|
|
292 |
else:
|
293 |
st.warning(f"**Dados insuficientes para inferência do valor. Mínimo necessário:** {k_threshold}")
|
294 |
|
295 |
+
with st.spinner('Loading report...'):
|
296 |
+
rofile = ProfileReport(filtered_data, title="Análise Exploratória dos Dados", explorative=True)
|
297 |
+
profile_html = profile.to_html()
|
298 |
+
components.html(profile_html, height=600, scrolling=True)
|