📈 Streamlit ydata Profiling
![PyPI](https://badgen.net/pypi/v/streamlit-ydata-profiling?icon=pypi&color=black&label)
Installation
pip install streamlit-ydata-profiling
Getting started
Checkout 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
Demo
![Open in Streamlit](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)
![Preview](https://raw.githubusercontent.com/pejmans21/streamlit-ydata-profiling/main/demo.png)