Releases: DISOhda/DiscreteTests
Releases · DISOhda/DiscreteTests
Release list
DiscreteTests 0.4.1
DiscreteTests 0.4.0
- Added sign tests for one- and two-sample paired designs (new function:
sign_test_pv()). - Added permutation test for the comparison of two independent samples with several built-in test statistics (new function:
perm_test_pv()).
DiscreteTests 0.3.0
- Added Wilcoxon's one- and two-sample sign rank tests (new function:
wilcox_test_pv()). - Added Mann-Whitney U test, which is equivalent to Wilcoxon's rank sum test (new function:
mann_whitney_test_pv()). - Added conditional two-sample homogeneity test for binomial experiments, which is special application of Fisher's exact test (new function:
homogenity_test_pv()). - Extensions to
DiscreteTestResultsclass to store observations as lists (e.g. to store vectors of different sizes) as well as to include the tests' statistics, the name of the null distribution and details regarding the computation of p-values. - Completely re-written
print()output of test results using theclipackage. - Old non-snake-case functions (
binom.test.pv(),fisher.test.pv(),mcnemar.test.pv()andpoisson.test.pv()) are now defunct and will be removed in a future version.
DiscreteTests 0.2.1
get_pvalues()method ofDiscreteTestResultsclass now includes the (row or cell names of the input observations (if present). Output of names can be suppressed by a parameter.print()method ofDiscreteTestResultsclass now also prints the (row or cell) names of the input observations (if present).