PIE 썸네일형 리스트형 cheat sheet import pandas as pd import numpy as np 데이터 프레임 = df features의 특정 feature = feature feature percent (pie chart) import matplotlib.pyplot as plt df.feature.value_counts().plot(kind='pie', autopct='%1.1f%%') # autopct = 비율표시 pandas_profiling (profile report) !pip install -U pandas-profiling from pandas_profiling import ProfileReport df.profile_report() chi-sqare test (두 변수간 연관성이 있는지 확인) from scipy... 더보기 이전 1 다음