
Last chance! 50% off unlimited learning
Sale ends in
Takes a numeric vector and will return the ecdf probability.
bootstrap_p_augment(.data, .value, .names = "auto")
A augmented tibble
The data being passed that will be augmented by the function.
This is passed rlang::enquo()
to capture the vectors you want
to augment.
The default is "auto"
Steven P. Sanderson II, MPH
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.
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)
Run the code above in your browser using DataLab