Skip to content

pejmanS21/streamlit-ydata-profiling

 
 

Repository files navigation

📈 Streamlit ydata Profiling

GitHub PyPI

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

Preview

Releases

No releases published

Packages

No packages published

Languages

  • Python 44.4%
  • TypeScript 32.6%
  • HTML 13.4%
  • Makefile 9.6%