Currently, the bootstrap residuals method for null_lm computes permutation residuals instead of bootstrap residuals (nonparametric bootstrapping being resampling with replacement, at least in this case). This PR:
Modifies resid_boot to compute bootstrap residuals.
Adds resid_perm to allow users to compute permutation residuals.
Currently, the bootstrap residuals method for
null_lm
computes permutation residuals instead of bootstrap residuals (nonparametric bootstrapping being resampling with replacement, at least in this case). This PR:resid_boot
to compute bootstrap residuals.resid_perm
to allow users to compute permutation residuals.Closes #21