diff --git a/DESCRIPTION b/DESCRIPTION index ef091f4..a69ccd9 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: bootabc Title: What the Package Does (One Line, Title Case) -Version: 0.0.0.9000 +Version: 0.9.0 Authors@R: person("First", "Last", , "first.last@example.com", role = c("aut", "cre"), comment = c(ORCID = "YOUR-ORCID-ID")) @@ -14,12 +14,11 @@ Imports: rlang (>= 1.0.0), data.table (>= 1.14.2), magrittr (>= 2.0.2), - dqrng (>= 0.3.0), - tidyselect (>= 1.1.2) + dqrng (>= 0.3.0) Suggests: covr, testthat (>= 3.0.0) Config/testthat/edition: 3 Encoding: UTF-8 Roxygen: list(markdown = TRUE) -RoxygenNote: 7.1.2 +RoxygenNote: 7.3.1 diff --git a/R/bootstrap_measures.R b/R/bootstrap_measures.R index 48f88f4..e7e944e 100644 --- a/R/bootstrap_measures.R +++ b/R/bootstrap_measures.R @@ -133,7 +133,8 @@ as_boot_strap <- function(x) { } #' Division function for boot_strap objects -#' @rdname / +#' @param numerator A boot_strap object as the numerator of the division +#' @param denominator A boot_strap object or a numeric as the denominator #' @export #' @importFrom purrr negate #' @importFrom dplyr select ungroup group_vars diff --git a/man/slash-.boot_strap.Rd b/man/slash-.boot_strap.Rd new file mode 100644 index 0000000..de47f73 --- /dev/null +++ b/man/slash-.boot_strap.Rd @@ -0,0 +1,16 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/bootstrap_measures.R +\name{/.boot_strap} +\alias{/.boot_strap} +\title{Division function for boot_strap objects} +\usage{ +\method{/}{boot_strap}(numerator, denominator) +} +\arguments{ +\item{numerator}{A boot_strap object as the numerator of the division} + +\item{denominator}{A boot_strap object or a numeric as the denominator} +} +\description{ +Division function for boot_strap objects +}