Skip to content

v0.13

Compare
Choose a tag to compare
@s3alfisc s3alfisc released this 26 Feb 14:29
· 90 commits to master since this release
93b4ddd

Potentially Breaking Changes:

  • boottest(), mboottest() and boot_aggregate()no longer have a dedicated seed argument. From version 0.13, reproducibility of results can only be controlled by setting a global seed via drqng::dqset.seed() and set.seed(). For more context, see the discussion below.

  • As one consequence, results produced via old versions of fwildlcusterboot are no longer exactly reproducible. For more background on this change, see the changelog.

  • When the bootstrap is run via engine = "WildBootTests.jl", the bootstrapped t-statistics and the original t-statistic are now returned as vectors (to align with the results from other enginges). Previously, they were returned as matrices.

Other Changes:

  • boottest() receives a new argument, sampling, which controls if random numbers are drawn via functions from base or the dqrng package.
  • Some code refactoring. All bootstrap algorithms and their associated files have been renamed (e.g. boot_algo2.R is not called boot_algo_fastnwild.R, etc.).
  • Much nicer error and message formatting, via rlang::abort(), warn() and inform(). rlang is added as a dependency.