#!/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)