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

Add Hartigan's dip test #22

Open karoliskoncevicius opened 3 years ago

karoliskoncevicius commented 3 years ago

Implement dip test. The original R implementation is available in the diptest library.

Close-your-eyes commented 1 year ago

FYI, I think this implementation of diptest has a limitation of 72000 observations per group or so. Alternatives may be silverman test (https://github.com/jenzopr/silvermantest) or multimode (https://cran.r-project.org/web/packages/multimode/multimode.pdf).

Currently, I have used/tested dip.test though from the diptest package.

karoliskoncevicius commented 1 year ago

Thanks! Very useful information for the future.