two_mean_bootstrap_CI | R Documentation |
This function will create a bootstrap confidence interval for a difference in means or difference in medians of a quantitative variable for two independent groups.
two_mean_bootstrap_CI(
formula,
data,
summary_measure = "mean",
first_in_subtraction,
confidence_level = 0.95,
number_repetitions = 100
)
formula |
Formula of the form |
data |
Data frame with columns for response and predictor variables. |
summary_measure |
Name of summary measure to return from simulations.
Allowed values are
|
first_in_subtraction |
Value of predictor variable that should be first in order of subtraction for computing difference in means. |
confidence_level |
Confidence level for interval in decimal form. Defaults to 0.95 (95% confidence interval). |
number_repetitions |
Number of bootstrapped resamples. |
Returns plot of distribution of bootstrapped statistics, with values as or more extreme than percentile confidence interval range highlighted, and reports confidence interval as subtitle on plot.
data(pt)
two_mean_bootstrap_CI(responses ~ brand,
data = pt,
first_in_subtraction = "B1",
confidence_level = 0.98,
number_repetitions = 1000
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.