pip install streamlit-ydata-profilingCheckout this example/main.py code.
import numpy as np
import pandas as pd
from ydata_profiling import ProfileReport
import streamlit as st
from streamlit_ydata_profiling import st_profile_report
df = pd.DataFrame(np.random.rand(100, 5), columns=["a", "b", "c", "d", "e"])
pr = ProfileReport(df, minimal=True, orange_mode=True, explorative=True)
st_profile_report(pr, navbar=True)To view dashboard execute following command:
streamlit run example/main.py