Hypothesis Test¶ In [ ]: import warnings warnings.filterwarnings('ignore') I. t-Test¶ 일반적으로 모집단의 모평균이나 모분산은 알 수 없음 표본표준편차로 표본집단을 표준화를 하면, 표준정규분포가 아닌 t-분포를 따름 표본표준편차로 변환한 t-분포를 사용하기 때문에 t-Test라고 함 1) 단일집단 t-Test¶ (1) Hypothesis¶ 귀무가설 : 스낵의 평균무게는 50이다. 대립가설 : 스낵의 평균무게는 50이 아니다. (2) 단일표본¶ In [2]: import pandas as pd url = 'https://raw.githubusercontent.com/rusita-ai/pyData/master/foodWeight.csv' DF..