| bootstrap_p_augment {TidyDensity} | R Documentation | 
Augment Bootstrap P
Description
Takes a numeric vector and will return the ecdf probability.
Usage
bootstrap_p_augment(.data, .value, .names = "auto")
Arguments
.data | 
 The data being passed that will be augmented by the function.  | 
.value | 
 This is passed   | 
.names | 
 The default is "auto"  | 
Details
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.
Value
A augmented tibble
Author(s)
Steven P. Sanderson II, MPH
See Also
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()
Examples
x <- mtcars$mpg
tidy_bootstrap(x) |>
  bootstrap_unnest_tbl() |>
  bootstrap_p_augment(y)
[Package TidyDensity version 1.5.0 Index]