Changes in version 0.2.3 (2023-10-05) INTERNAL o Kolmogorov-Smirnov test now works on R-devel: fix requested by CRAN after a change of argument names in `psmirnov`. Changes in version 0.2.2 (2023-05-01) NEW FEATURES o Added two-sample Kolmogorov-Smirnov test: `row_kolmogorovsmirnov_twosample` and `col_kolmogorovsmirnov_twosample`. Changes in version 0.2.1 (2023-04-20) INTERNAL o Slight speed improvements of various tests in cases with large sample sizes. Changes in version 0.2.0 NEW FEATURES o Added Anderson-Darling test: `row_andersondarling` and `col_andersondarling`. o Setting conf.level to NA now turns off confidence intervals and improves computation speed. BUG FIXES o Wilcoxon two-sample test no longer causes integer overflow on large sample sizes. o Waerden and Flinger-Killeen tests no longer produce NA results when a whole group has only NA values in x. o Wilcoxon tests no longer produce double warning messages when some rows have no remaining observations. o Paired t-test no longer returns var.diff = 0 when all paired observations are missing. o Warnings are now more robust in correctly deciding between row and column messages. CHANGES o Null-mean and null-ratio arguments are now more consistent across functions: previously named `mu` and `ratio`, now consistently named `null`. o The position of `null` argument is now more consistent across functions: `null` always comes before the `alternative` argument. o `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. o `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. o Cosinor gets a separate warning for the case where all observations come from the same time-point within the specified period. o Missing argument errors no longer reference `force()` in their error messages. o Warning message about constant values in rows are now consistent between tests. o Warning message about too few remaining observations are now more consistent between wilcoxon and t tests. o 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 o Slight speed improvements of all tests in cases with sample sizes bigger than 100. o Improved the speed of Wilcox tests, specially in cases with ties. o van der Waerden test is now aligned and tested against `PMCMRplus::vanWaerdenTest()` (previously `PMCMR::vanWaerden.test()`). o matrixTests no longer depends on `testthat` for unit tests. o All unit tests are rewritten. Changes in version 0.1.9 (2020-05-01) NEW FEATURES o Added van der Waerden test: `row_waerden` and `col_waerden`. DOCUMENTATION o Changed NEWS format to markdown. Changes in version 0.1.8 (2020-01-10) INTERNAL o Adjusted unit tests to conform with changes in R-devel 4.0.0 for CRAN. Changes in version 0.1.7 (2019-10-19) NEW FEATURES o Added Cosinor test: `row_cosinor` and `col_cosinor`. Changes in version 0.1.6 (2019-09-19) NEW FEATURES o Added Levene test: `row_levene` and `col_levene`. o Added Brown-Forsythe test: `row_brownforsythe` and `col_brownforsythe`. Changes in version 0.1.5 (2019-07-09) NEW FEATURES o Added F-test for variance: `row_f_var` and it's column equivalent. INTERNAL o Various speed improvements across all types of tests. o Added missing tests for warnings about NA values in "group" argument. Changes in version 0.1.4 (2019-06-25) INTERNAL o Improved the speed of Wilcoxon and Kruskal Wallis tests. o Improved the speed of Oneway and Bartlett tests. o Added run time benchmarks. o Expanded test coverage to include all lines within code at least once. o Added more tests for ties in `row_kruskalwallis`. Changes in version 0.1.3 (2019-06-10) NEW FEATURES o Added Wilcoxon tests: `row_wilcox_onesample`, `row_wilcox_paired` and `row_wilcox_twosample` plus column version equivalents. BUG FIXES o Warning messages for column-wise functions no longer warn about rows and specifies columns instead. DOCUMENTATION o Small adjustments to some documentation files (spelling mistakes, ordering, etc). Changes in version 0.1.2 (2019-04-05) NEW FEATURES o Added Jarque Bera test: `row_jarquebera` and `col_jarquebera`. o Added Fligner-Killeen test: `row_flignerkilleen` and `col_flignerkilleen`. BUG FIXES o The warning messages are no longer repeated 3 times in cases when the call has a namespace (i.e. `matrixTests::row_bartlett`). Changes in version 0.1.1 (2019-03-15) CHANGES o `row_ievora` and `col_ievora` "g" (group) parameter was renamed to "b" (binary). INTERNAL o Fixed an indexing bug in `row_cor_pearson()` monte-carlo unit testing step. DOCUMENTATION o Improved help documentation. Changes in version 0.1.0 (2018-03-05) NEW FEATURES o Created and submitted to CRAN.