karoliskoncevicius / matrixTests

R package for computing multiple hypothesis tests on rows/columns of a matrix or a data.frame
https://cran.r-project.org/web/packages/matrixTests/index.html
36 stars 5 forks source link

Make row_ievora self-contained #9

Closed karoliskoncevicius closed 1 year ago

karoliskoncevicius commented 4 years ago

Currently row_ievora calls row_bartlett and row_t_welch. Both these functions do some preprocessing on their own.

Rewriting row_ievora to have all the needed code to run the tests within itself would improve the speeed and handling of warnings.

karoliskoncevicius commented 4 years ago

After some reflection I decided to remove iEvora from matrixTests entirely. Strictly speaking it doesn't behave like a statistical test and hence doesn't belong in this package.

Users can perform iEvora by applying Bartlett's test followed by Student's t-test and choosing their p-value cut-offs manually.