fschwartzer commited on
Commit
a786de5
1 Parent(s): f3228b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
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
- profile = ProfileReport(filtered_data, title="Pandas Profiling Report", explorative=True)
296
- profile_html = profile.to_html()
297
- components.html(profile_html, height=500, scrolling=True)
 
 
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)