Skip to content

Commit 07537e8

Browse files
authored
Student's distribution GoF criteria (#65)
* Usatov: agreed sort in some calls Student.execute_statistic. Make test_power_against_normal check statistics. Change random.seed to default_rng for not change global state, some other small fixes * Fix format * centralize Student-t CDF clipping
1 parent c6b1c5f commit 07537e8

File tree

3 files changed

+1407
-0
lines changed

3 files changed

+1407
-0
lines changed

pysatl_criterion/statistics/__init__.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,18 @@
7676
ZhangWuANormalityGofStatistic,
7777
ZhangWuCNormalityGofStatistic,
7878
)
79+
from pysatl_criterion.statistics.student import (
80+
AbstractStudentGofStatistic,
81+
AndersonDarlingStudentGofStatistic,
82+
ChiSquareStudentGofStatistic,
83+
CramerVonMisesStudentGofStatistic,
84+
KolmogorovSmirnovStudentGofStatistic,
85+
KuiperStudentGofStatistic,
86+
LillieforsStudentGofStatistic,
87+
WatsonStudentGofStatistic,
88+
ZhangZaStudentGofStatistic,
89+
ZhangZcStudentGofStatistic,
90+
)
7991
from pysatl_criterion.statistics.weibull import (
8092
AbstractWeibullGofStatistic,
8193
AndersonDarlingWeibullGofStatistic,
@@ -196,4 +208,14 @@
196208
"ZhangQStarNormalityGofStatistic",
197209
"ZhangWuANormalityGofStatistic",
198210
"ZhangWuCNormalityGofStatistic",
211+
"AbstractStudentGofStatistic",
212+
"AndersonDarlingStudentGofStatistic",
213+
"ChiSquareStudentGofStatistic",
214+
"CramerVonMisesStudentGofStatistic",
215+
"KolmogorovSmirnovStudentGofStatistic",
216+
"KuiperStudentGofStatistic",
217+
"LillieforsStudentGofStatistic",
218+
"WatsonStudentGofStatistic",
219+
"ZhangZaStudentGofStatistic",
220+
"ZhangZcStudentGofStatistic",
199221
]

0 commit comments

Comments
 (0)