whitphx's picture
whitphx HF Staff
Add custom component samples
a7916dc
raw
history blame
255 Bytes
import pandas as pd
import pandas_profiling
import streamlit as st
from streamlit_pandas_profiling import st_profile_report
df = pd.read_csv("https://storage.googleapis.com/tf-datasets/titanic/train.csv")
pr = df.profile_report()
st_profile_report(pr)