powered by
Apply min or max across random draws.
min
max
draws_min(x, na_rm = FALSE)draws_max(x, na_rm = FALSE)# S3 method for rvec_chr draws_min(x, na_rm = FALSE)# S3 method for rvec draws_min(x, na_rm = FALSE)# S3 method for rvec_chr draws_max(x, na_rm = FALSE)# S3 method for rvec draws_max(x, na_rm = FALSE)
draws_max(x, na_rm = FALSE)
# S3 method for rvec_chr draws_min(x, na_rm = FALSE)
# S3 method for rvec draws_min(x, na_rm = FALSE)
# S3 method for rvec_chr draws_max(x, na_rm = FALSE)
# S3 method for rvec draws_max(x, na_rm = FALSE)
A vector.
An object of class rvec.
Whether to remove NAs before calculating minima and maxima. Default is FALSE.
FALSE
Apply pre-specified functions across draws:
draws_all()
draws_any()
draws_median()
draws_mean()
draws_mode()
draws_sd()
draws_var()
draws_cv()
draws_ci()
draws_quantile()
Apply arbitrary function across draws:
draws_fun()
m <- rbind(a = c(1, -3, 2), b = c(Inf, 0, -Inf), c = c(0.2, 0.3, 0.1)) x <- rvec(m) x draws_min(x) draws_max(x)
Run the code above in your browser using DataLab