View source: R/augment-bootstrap-p.R
bootstrap_p_augment | R Documentation |
Takes a numeric vector and will return the ecdf probability.
bootstrap_p_augment(.data, .value, .names = "auto")
.data |
The data being passed that will be augmented by the function. |
.value |
This is passed |
.names |
The default is "auto" |
Takes a numeric vector and will return the ecdf probability of that vector. This function is intended to be used on its own in order to add columns to a tibble.
A augmented tibble
Steven P. Sanderson II, MPH
Other Augment Function:
bootstrap_density_augment()
,
bootstrap_q_augment()
Other Bootstrap:
bootstrap_density_augment()
,
bootstrap_p_vec()
,
bootstrap_q_augment()
,
bootstrap_q_vec()
,
bootstrap_stat_plot()
,
bootstrap_unnest_tbl()
,
tidy_bootstrap()
x <- mtcars$mpg
tidy_bootstrap(x) |>
bootstrap_unnest_tbl() |>
bootstrap_p_augment(y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.