contingency.data.break
From InPosition v0.12.7.1
by Derek Beaton
Bootstrap or permutation resampling for contingency tables
Bootstrap or permutation resampling for contingency tables. More specifically, for correspondence analysis (epCA
).
- Keywords
- Bootstrap, Permutation
Usage
contingency.data.break(DATA, boot = FALSE)
Arguments
- DATA
A contingency table to resample.
- boot
a boolean. If TRUE, use bootstrap (resample with replacement) resampling. If FALSE, use permutation (resample with no replacement).
Value
A resampled contingency table.
See Also
Examples
# NOT RUN {
data(authors)
boot.authors <- contingency.data.break(authors$ca$data,boot=TRUE)
perm.authors <- contingency.data.break(authors$ca$data)
# }
Community examples
Looks like there are no examples yet.