Cross-tabulation(교차분석) in Python

최민석·2021년 7월 14일
0

data science

목록 보기
3/12

data를 chart를 통해 시각화 할 때, 혹은 정규화를 할 때 등
서로 다른 두 가지 범주형 변수의 관계를 분석할 때 교차분석을 이용하게 된다

https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.crosstab.html

pd.crosstab()

#pandas 라이브러리 불러오기
import pandas as pd

#dataframe 불러오기
df = pd.read_excel('/contents/ex.xlsx', sheet_name=0)

pd.crosstab(index=df['EMP_STA'], columns=df['RACE'])

profile
학습기록

0개의 댓글