Skip to content

Commit

Permalink
Fix docs typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jeancochrane committed Dec 12, 2024
1 parent 39f727f commit 41f0166
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
6 changes: 3 additions & 3 deletions R/ci.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#' for a given numeric input and a chosen function.
#'
#' @param FUN Function to bootstrap. Must return a single value.
#' @param estimate A character vector of estimated values. Must be the same
#' @param estimate A numeric vector of estimated values. Must be the same
#' length as \code{sale_price}.
#' @param sale_price A character vector of sale prices. Must be the same
#' @param sale_price A numeric vector of sale prices. Must be the same
#' length as \code{estimate}.
#' @param nboot Default 1000. Number of iterations to use to estimate
#' the output statistic confidence interval.
Expand Down Expand Up @@ -34,7 +34,7 @@
#' )
#' @export
boot_ci <- function(
FUN = NULL,
FUN,
estimate,
sale_price,
nboot = 1000,
Expand Down
2 changes: 1 addition & 1 deletion R/outliers.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#'
#' @param x A numeric vector, typically sales ratios. Must be longer than 2 and
#' cannot contain \code{Inf} or \code{NaN}.
#' @param method Default \code{iqr.} String indicating outlier detection method.
#' @param method Default \code{iqr}. String indicating outlier detection method.
#' Options are \code{iqr} or \code{quantile}.
#' @param probs Upper and lower percentiles denoting outlier boundaries for
#' the \code{quantile} method.
Expand Down
13 changes: 3 additions & 10 deletions man/boot_ci.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/is_outlier.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 41f0166

Please sign in to comment.