사용자 도구

사이트 도구


stastics

Stastics

Table

p-value

import numpy as np
from scipy import stats
 
x1 = np.random.normal(0, 1, 100)
x2 = np.random.normal(0, 1, 100)
pvalue = stats.ttest_rel(scores[:, 0], scores[:, 1]).pvalue
# pvalue -> 0.719082
 
x1 = np.random.normal(0, 1, 100)
x2 = np.random.normal(0.5, 1, 100)
pvalue = stats.ttest_rel(scores[:, 0], scores[:, 1]).pvalue
# pvalue -> 0.000060
stastics.txt · 마지막으로 수정됨: 2024/03/23 02:38 저자 127.0.0.1