Skip to content

Instantly share code, notes, and snippets.

@cindyangelira
Created January 23, 2023 15:49
Show Gist options
  • Save cindyangelira/4b8f2509f0b20eae7e914ce05e891e89 to your computer and use it in GitHub Desktop.
Save cindyangelira/4b8f2509f0b20eae7e914ce05e891e89 to your computer and use it in GitHub Desktop.
Pandas Profiling Streamlit
def data_exploration():
df = df1.copy()
st.title("Data Exploration via Pandas Profiling", anchor="data-exploration")
st.caption("Please wait for a few seconds for the data exploration to be completed")
df_profile = ProfileReport(df, explorative=True)
st_profile_report(df_profile)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment