Spaces:
Runtime error
Runtime error
File size: 255 Bytes
a7916dc |
1 2 3 4 5 6 7 8 9 10 11 |
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)
|