Compute hierarchical percentile bootstrap confidence interval on data set pair.
Source:R/interval.R
compute_list_vectors_pair_hierarchical_percentile_ci.Rd
Compute hierarchical percentile bootstrap confidence interval on data set pair.
Usage
compute_list_vectors_pair_hierarchical_percentile_ci(
.input_one,
.input_two,
.combination = .Primitive("-"),
.statistic_outer = mean,
.statistic_inner = mean,
.confidence = 0.99,
.R = 10000,
.reduction = 0
)
Arguments
- .input_one
Data set one to compute with.
- .input_two
Data set two to compute with.
- .combination
Combination to compute for both data sets.
- .statistic_outer
Statistic to compute at the outer level.
- .statistic_inner
Statistic to compute at the inner leve.
- .confidence
Confidence level.
- .R
Number of replicates.
- .reduction
Replicate size reduction.