-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reimplemented multiple tests, improved type hints, linted and formatt…
…ed code with ruff
- Loading branch information
Showing
5 changed files
with
1,492 additions
and
814 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,43 @@ | ||
__version__ = '0.9.1' | ||
__version__ = "0.10.0" | ||
|
||
from scikit_posthocs._global import global_simes_test, global_f_test | ||
from scikit_posthocs._omnibus import test_osrt, test_durbin, test_mackwolfe | ||
|
||
from scikit_posthocs._posthocs import ( | ||
posthoc_anderson, posthoc_conover, posthoc_conover_friedman, | ||
posthoc_dscf, posthoc_dunn, posthoc_durbin, | ||
posthoc_mannwhitney, posthoc_miller_friedman, posthoc_nemenyi, | ||
posthoc_nemenyi_friedman, posthoc_npm_test, posthoc_quade, | ||
posthoc_scheffe, posthoc_siegel_friedman, posthoc_tamhane, | ||
posthoc_ttest, posthoc_tukey, posthoc_tukey_hsd, | ||
posthoc_vanwaerden, posthoc_wilcoxon, posthoc_dunnett, | ||
__convert_to_df, __convert_to_block_df, | ||
posthoc_anderson, | ||
posthoc_conover, | ||
posthoc_conover_friedman, | ||
posthoc_dscf, | ||
posthoc_dunn, | ||
posthoc_durbin, | ||
posthoc_mannwhitney, | ||
posthoc_miller_friedman, | ||
posthoc_nemenyi, | ||
posthoc_nemenyi_friedman, | ||
posthoc_npm_test, | ||
posthoc_quade, | ||
posthoc_scheffe, | ||
posthoc_siegel_friedman, | ||
posthoc_tamhane, | ||
posthoc_ttest, | ||
posthoc_tukey, | ||
posthoc_tukey_hsd, | ||
posthoc_vanwaerden, | ||
posthoc_wilcoxon, | ||
posthoc_dunnett, | ||
__convert_to_df, | ||
__convert_to_block_df, | ||
) | ||
|
||
from scikit_posthocs._plotting import ( | ||
sign_array, sign_plot, sign_table, critical_difference_diagram, | ||
sign_array, | ||
sign_plot, | ||
sign_table, | ||
critical_difference_diagram, | ||
) | ||
from scikit_posthocs._outliers import ( | ||
outliers_gesd, outliers_grubbs, outliers_iqr, outliers_tietjen, | ||
outliers_gesd, | ||
outliers_grubbs, | ||
outliers_iqr, | ||
outliers_tietjen, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.