: 기존에 R에서 가능했던 다양한 회귀분석과 시계열분석 방법론을 그대로 파이썬에서 이용할 수 있다.
from statsmodels.graphics.mosaicplot import mosaic
mosaic(data명, ['열이름1', '열이름2'])
: 범주별 양과 비율을 그래프로 나타냄model = sm.Logit(titanic['Survived'], titanic['Age'])
result = model.fit()
print(result.pvalues)
# 출력
Optimization terminated successfully.
Current function value: 0.661967
Iterations 4
Age 3.932980e-13
dtype: float64