diptest

Python/C++ implementation of Hartigan & Hartigan's dip test, based on Martin Maechler's R package

GPL-3.0 License

Downloads
23.1K
Stars
18
Committers
6

Bot releases are hidden (Show)

diptest - Diptest v0.8.1 Latest Release

Published by RUrlus about 2 months ago

Changes

Internal

Full Changelog: https://github.com/RUrlus/diptest/compare/v0.8.0...v0.8.1

diptest - Release v0.8.0

Published by RUrlus 6 months ago

What's Changed

Internal

Full Changelog: https://github.com/RUrlus/diptest/compare/v0.7.0...v0.8.0

diptest - v0.7.0

Published by RUrlus 10 months ago

What's Changed

Full Changelog: https://github.com/RUrlus/diptest/compare/v0.6.1...v0.7.0

diptest - Patch release 0.6.1

Published by RUrlus 11 months ago

What's Changed

Full Changelog: https://github.com/RUrlus/diptest/compare/v0.6.0...v0.6.1

diptest - Diptest v0.6.0

Published by RUrlus 12 months ago

Feature release

Enhancements

Full Changelog: https://github.com/RUrlus/diptest/compare/v0.5.2...v0.6.0

diptest - Diptest v0.5.2

Published by RUrlus almost 2 years ago

v0.5.2 -- December 2022

Enhancements

  • Added support for Python 3.11
diptest - Patch release diptest v0.5.1

Published by RUrlus over 2 years ago

v0.5.1 -- June 2022

Fix

  • Fix typo in OPENMP support macro
diptest - Release diptest v0.5.0

Published by RUrlus over 2 years ago

v0.5.0 -- June 2022

Changes

Enhancements

  • Set _has_open_mp_support attribute to the extension for neater support checks
diptest - Patch release Diptest v0.4.2

Published by RUrlus over 2 years ago

v0.4.2 -- May 2022

Fixes

  • Fix bug in bootstrap p-value computation due to missing cast

Changes

diptest - Release Diptest v0.4.1

Published by RUrlus over 2 years ago

Enhancements

  • Add option to set a stream for single threaded p-value bootstrap computation
diptest - Release diptest v0.4.0

Published by RUrlus over 2 years ago

Changes

  • diptest.c was rewritten in C++ (Special thanks to Prodromos Kolyvakis)
  • Incorporated OptimizeForArchitecture from VC for better architecture specific
    compile flags
diptest - Release Diptest v0.3.0

Published by RUrlus over 2 years ago

Changes

  • Switch to PCG64-DXSM RNG from Mersenne twister
diptest - Release Diptest v0.2.3

Published by RUrlus over 2 years ago

Patch release

Changes

  • Fix conversion to double in accumulate
diptest - Release diptest v0.2.2

Published by RUrlus over 2 years ago

Patch release

Changes

  • Fix for incorrect number of default threads in bootstrap p-value computation
  • Minimal scikit-build version is 0.14.1

Internal

  • Reduce memory footprint single-threaded bootstrap computation p-value
diptest - Diptest v0.2.1

Published by RUrlus over 2 years ago

Patch release

Changes

  • Enforce C99 standard in CMake
diptest - V0.2.0

Published by RUrlus over 2 years ago

Release Diptest v0.2.0

The package wrapping the C implementation was originally written by Alistair Muldal.
The fork is an update with a number of changes.

Changes

  • Fixes a buffer overrun issue in _dip.c by reverting to the original C implementation
  • Python bindings using Pybind11 (C++) instead of Cython
  • P-value computation using bootstrapping has been moved down to C++ with optional parallelisation support through OpenMP
  • Removed overhead caused by debug branching statements by placing them under a compile-time definition
  • Added tests and wheel support