파이썬에서 기본적인 추리 통계분석 패키지를 사용하는 방법입니다. In [1]: from IPython.core.display import display, HTML display(HTML("")) In [2]: import pandas as pd import numpy as np from scipy import stats 추리통계¶ t 검증¶ 독립표본 t 검증¶ In [3]: sample1=np.random.randint(1000,size=50) sample2=np.random.randint(1000,size=50) print("평균") print(np.mean(sample1)) print(np.mean(sample2)) print("표준편차") print(np.std(sample1)) print(np.s..