Skip to content

Commit

Permalink
Merge pull request #535 from tidymodels/fix-533
Browse files Browse the repository at this point in the history
Fix required name for standard error column for `int_t()`
  • Loading branch information
hfrick authored Sep 12, 2024
2 parents 617b619 + f42ca1f commit 56ba1a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions R/bootci.R
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ pctl_single <- function(stats, alpha = 0.05) {
#' `term` and `estimate`). Optionally, users can include columns whose names
#' begin with a period and the intervals will be created for each combination
#' of these variables and the `term` column. For t-intervals, a standard tidy
#' column (usually called `std.err`) is required. See the examples below.
#' column (usually called `std.error`) is required. See the examples below.
#' @param alpha Level of significance.
#' @param .fn A function to calculate statistic of interest. The
#' function should take an `rsplit` as the first argument and the `...` are
Expand Down Expand Up @@ -238,8 +238,8 @@ pctl_single <- function(stats, alpha = 0.05) {
#' tibble(
#' term = "corr",
#' estimate = cor(dat$sqft, dat$price, method = "spearman"),
#' # don't know the analytical std.err so no t-intervals
#' std.err = NA_real_
#' # don't know the analytical std.error so no t-intervals
#' std.error = NA_real_
#' )
#' }
#'
Expand Down
6 changes: 3 additions & 3 deletions man/int_pctl.Rd

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

0 comments on commit 56ba1a8

Please sign in to comment.