automl_pycaret / get_profile.py
konstantinG's picture
Update get_profile.py
feace7b
from pandas_profiling import ProfileReport
from streamlit_pandas_profiling import st_profile_report
import streamlit as st
@st.experimental_memo
def get_profile(data, config):
profile_df = ProfileReport(data, config_file=config)
return profile_df