Created
January 23, 2023 15:49
-
-
Save cindyangelira/4b8f2509f0b20eae7e914ce05e891e89 to your computer and use it in GitHub Desktop.
Pandas Profiling Streamlit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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