stastics
차이
문서의 선택한 두 판 사이의 차이를 보여줍니다.
다음 판 | 이전 판 | ||
stastics [2018/03/15 01:43] – 만듦 rex8312 | stastics [2024/03/23 02:38] (현재) – 바깥 편집 127.0.0.1 | ||
---|---|---|---|
줄 1: | 줄 1: | ||
====== Stastics ====== | ====== Stastics ====== | ||
- | ====== | + | ====== Table ====== |
* [[http:// | * [[http:// | ||
줄 7: | 줄 7: | ||
===== p-value ===== | ===== p-value ===== | ||
+ | * https:// | ||
* http:// | * http:// | ||
+ | |||
+ | <code python> | ||
+ | import numpy as np | ||
+ | from scipy import stats | ||
+ | |||
+ | x1 = np.random.normal(0, | ||
+ | x2 = np.random.normal(0, | ||
+ | pvalue = stats.ttest_rel(scores[:, | ||
+ | # pvalue -> 0.719082 | ||
+ | |||
+ | x1 = np.random.normal(0, | ||
+ | x2 = np.random.normal(0.5, | ||
+ | pvalue = stats.ttest_rel(scores[:, | ||
+ | # pvalue -> 0.000060 | ||
+ | |||
+ | </ |
stastics.1521078185.txt.gz · 마지막으로 수정됨: (바깥 편집)