boot() and permTest() now accept
logical, factor, and character response variables with exactly two
levels. A new success argument specifies which level is
coded as 1 (proportion). A message confirms the coding chosen.
bootPaired() computed the paired difference as
x - y, inconsistent with permTestPaired()’s
y - x; both now use y - x, and
permTestPaired()’s printed group means, which were
mislabeled, now show the correct name next to each mean.
permTestCor() and permTestPaired() had
a seed argument that was silently ignored, making results
non-reproducible. The seed argument now correctly sets the
random seed before the permutation loop.
Minimum R version is now declared as R (>= 3.5.0) and minimum
ggplot2 version as 3.3.0 in DESCRIPTION.
The boot*() functions now return the bootstrap
statistics as a carlboot object, which has
print, plot, summary, and
confint methods.
The permTest*() functions now return the bootstrap
statistics as a carlperm object, which has
print, plot, and summary
methods.
Additional arguments were added to the boot*() and
permTest*() functions:xlab,ylab,title,seed`.
Some arguments were deleted from the boot*()
functions: legend.loc (just use ggplot2 theme if needed),
hist.title (now use title)
All plots generated by the boot*() and
permTest*() functions are now rendered via
ggplot2.
Added a new bootstrap function: bootSlope()
Added two new permutation test functions:
permTestSlope() and permTestAnova()
Added formula syntax for ``
Added a NEWS.md file to track changes to the
package.