File size: 452 Bytes
b966bc9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Project : Python.
# @File : 1002_profile
# @Time : 2022/10/17 下午2:34
# @Author : yuanjie
# @WeChat : meutils
# @Software : PyCharm
# @Description :
import pandas as pd
import pandas_profiling
import streamlit as st
from streamlit_pandas_profiling import st_profile_report
df = pd.read_csv("./data/train.csv")
pr = df.profile_report()
st_profile_report(pr) |