-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
NEWS
164 lines (88 loc) · 4.91 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
Package: matrixTests
====================
Version 0.2.3 [2023 Oct 05]
INTERNAL:
* Kolmogorov-Smirnov test now works on R-devel: fix requested by CRAN after a change of argument names in `psmirnov`.
Version 0.2.2 [2023 May 1]
NEW FEATURES:
* Added two-sample Kolmogorov-Smirnov test: `row_kolmogorovsmirnov_twosample` and `col_kolmogorovsmirnov_twosample`.
Version 0.2.1 [2023 Apr 20]
INTERNAL:
* Slight speed improvements of various tests in cases with large sample sizes.
Version 0.2.0 [2023 Apr 07]
NEW FEATURES:
* Added Anderson-Darling test: `row_andersondarling` and `col_andersondarling`.
* Setting conf.level to NA now turns off confidence intervals and improves computation speed.
BUG FIXES:
* Wilcoxon two-sample test no longer causes integer overflow on large sample sizes.
* Waerden and Flinger-Killeen tests no longer produce NA results when a whole group has only NA values in x.
* Wilcoxon tests no longer produce double warning messages when some rows have no remaining observations.
* Paired t-test no longer returns var.diff = 0 when all paired observations are missing.
* Warnings are now more robust in correctly deciding between row and column messages.
CHANGES:
* Null-mean and null-ratio arguments are now more consistent across functions: previously named `mu` and `ratio`, now consistently named `null`.
* The position of `null` argument is now more consistent across functions: `null` always comes before the `alternative` argument.
* `row_ievora` and `col_ievora` functions are removed. ievora method is a simple application of a Bartlett's test followed by a Student's t-test and can be performed manually.
* `Inf` values in `wilcox_*` tests are no longer removed but treated as highest ranks in order to be consistent with base R 4.0.0. implementation.
* Cosinor gets a separate warning for the case where all observations come from the same time-point within the specified period.
* Missing argument errors no longer reference `force()` in their error messages.
* Warning message about constant values in rows are now consistent between tests.
* Warning message about too few remaining observations are now more consistent between wilcoxon and t tests.
* When a test cannot be executed all test-specific outputs (test statistic, standard error, and degrees of freedom, not just p-values and confidence intervals as before) are now turned to NA for that row/column.
INTERNAL:
* Slight speed improvements of all tests in cases with sample sizes bigger than 100.
* Improved the speed of Wilcox tests, specially in cases with ties.
* van der Waerden test is now aligned and tested against `PMCMRplus::vanWaerdenTest()` (previously `PMCMR::vanWaerden.test()`).
* matrixTests no longer depends on `testthat` for unit tests.
* All unit tests are rewritten.
Version 0.1.9 [2020 Apr 30]
NEW FEATURES:
* Added van der Waerden test: `row_waerden` and `col_waerden`.
DOCUMENTATION:
* Changed NEWS format to markdown.
Version 0.1.8 [2020 Jan 08]
INTERNAL:
* Adjusted unit tests to conform with changes in R-devel 4.0.0 for CRAN.
Version 0.1.7 [2019 Nov 05]
NEW FEATURES:
* Added Cosinor test: `row_cosinor` and `col_cosinor`.
Version 0.1.6 [2019 Sep 19]
NEW FEATURES:
* Added Levene test: `row_levene` and `col_levene`.
* Added Brown-Forsythe test: `row_brownforsythe` and `col_brownforsythe`.
Version 0.1.5 [2019 Jul 09]
NEW FEATURES:
* Added F-test for variance: `row_f_var` and it's column equivalent.
INTERNAL:
* Various speed improvements across all types of tests.
* Added missing tests for warnings about NA values in "group" argument.
Version: 0.1.4 [2019 Jun 25]
INTERNAL:
* Improved the speed of Wilcoxon and Kruskal Wallis tests.
* Improved the speed of Oneway and Bartlett tests.
* Added run time benchmarks.
* Expanded test coverage to include all lines within code at least once.
* Added more tests for ties in `row_kruskalwallis`.
Version: 0.1.3 [2019 Jun 10]
NEW FEATURES:
* Added Wilcoxon tests: `row_wilcox_onesample`, `row_wilcox_paired` and `row_wilcox_twosample` plus column version equivalents.
BUG FIXES:
* Warning messages for column-wise functions no longer warn about rows and specifies columns instead.
DOCUMENTATION:
* Small adjustments to some documentation files (spelling mistakes, ordering, etc).
Version: 0.1.2 [2019 Apr 05]
NEW FEATURES:
* Added Jarque Bera test: `row_jarquebera` and `col_jarquebera`.
* Added Fligner-Killeen test: `row_flignerkilleen` and `col_flignerkilleen`.
BUG FIXES:
* The warning messages are no longer repeated 3 times in cases when the call has a namespace (i.e. `matrixTests::row_bartlett`).
Version: 0.1.1 [2019 Mar 15]
CHANGES:
* `row_ievora` and `col_ievora` "g" (group) parameter was renamed to "b" (binary).
INTERNAL:
* Fixed an indexing bug in `row_cor_pearson()` monte-carlo unit testing step.
DOCUMENTATION:
* Improved help documentation.
Version: 0.1.0 [2018 Mar 5]
NEW FEATURES:
* Created and submitted to CRAN.