Skip to content

Commit

Permalink
release v1.0.6 (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpcouch committed Jan 31, 2024
1 parent 3866325 commit fdbcece
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: infer
Title: Tidy Statistical Inference
Version: 1.0.5.9000
Version: 1.0.6
Authors@R: c(
person("Andrew", "Bray", , "abray@reed.edu", role = "aut"),
person("Chester", "Ismay", , "chester.ismay@gmail.com", role = "aut",
Expand Down Expand Up @@ -67,5 +67,5 @@ Config/Needs/website: tidyverse/tidytemplate
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
RoxygenNote: 7.3.0
Config/testthat/edition: 3
6 changes: 3 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# infer v1.0.5.9000 (development version)

* Fixed bug where `get_confidence_interval()` would error uninformatively when the supplied distribution of estimates contained missing values. The function will now warn and return a confidence interval calculated using the non-missing estimates.
# infer v1.0.6

* Updated infrastructure for errors, warnings, and messages (#513). Most of these changes will not be visible to users, though:
- Many longer error messages are now broken up into several lines.
- For references to help-files, users can now click on the error message's text to navigate to the cited documentation.

* Various improvements to documentation (#501, #504, #508, #512).

* Fixed bug where `get_confidence_interval()` would error uninformatively when the supplied distribution of estimates contained missing values. The function will now warn and return a confidence interval calculated using the non-missing estimates (#521).

* Fixed bug where `generate()` could not be used without first `specify()`ing variables, even in cases where that specification would not affect resampling/simulation (#448).

# infer v1.0.5
Expand Down
2 changes: 1 addition & 1 deletion R/deprecated.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#' Deprecated functions and objects
#'
#' These functions and objects should no longer be used. They will be removed
#' in a future release of \code{infer}.
#' in a future release of infer.
#' @param x See the non-deprecated function.
#' @param level See the non-deprecated function.
#' @param type See the non-deprecated function.
Expand Down
4 changes: 2 additions & 2 deletions R/shade_confidence_interval.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
#' end points as a vertical lines on the plot.
#' @param fill A character or hex string specifying the color to shade the
#' confidence interval. If `NULL` then no shading is actually done.
#' @param ... Other arguments passed along to \\{ggplot2\\} functions.
#' @param ... Other arguments passed along to ggplot2 functions.
#'
#' @return If added to an existing {infer} visualization, a \\{ggplot2\\}
#' @return If added to an existing infer visualization, a ggplot2
#' object displaying the supplied intervals on top of its corresponding
#' distribution. Otherwise, an `infer_layer` list.
#'
Expand Down
4 changes: 2 additions & 2 deletions R/shade_p_value.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
#' statistic as a vertical line on the plot.
#' @param fill A character or hex string specifying the color to shade the
#' p-value region. If `NULL`, the function will not shade any area.
#' @param ... Other arguments passed along to \\{ggplot2\\} functions.
#' @param ... Other arguments passed along to ggplot2 functions.
#' For expert use only.
#'
#' @return If added to an existing {infer} visualization, a \\{ggplot2\\}
#' @return If added to an existing infer visualization, a ggplot2
#' object displaying the supplied statistic on top of its corresponding
#' distribution. Otherwise, an `infer_layer` list.
#'
Expand Down
2 changes: 1 addition & 1 deletion R/wrappers.R
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ t_test <- function(x, formula,
#' @param mu A numeric value giving the hypothesized null mean value for a one
#' sample test and the hypothesized difference for a two sample test.
#' @inheritParams t_test
#' @param ... Pass in arguments to \\{infer\\} functions.
#' @param ... Pass in arguments to infer functions.
#'
#' @examples
#' library(tidyr)
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ output: github_document

[![R-CMD-check](https://github.com/tidymodels/infer/actions/workflows/check-standard.yaml/badge.svg)](https://github.com/tidymodels/infer/actions/workflows/check-standard.yaml)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/infer)](https://cran.r-project.org/package=infer)
[![Coverage Status](https://img.shields.io/codecov/c/github/tidymodels/infer/main.svg)](https://codecov.io/github/tidymodels/infer/?branch=main)
[![Coverage Status](https://img.shields.io/codecov/c/github/tidymodels/infer/main.svg)](https://app.codecov.io/github/tidymodels/infer/?branch=main)

The objective of this package is to perform statistical inference using an expressive statistical grammar that coheres with the `tidyverse` design framework. The package is centered around 4 main verbs, supplemented with many utilities to visualize and extract value from their outputs.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[![R-CMD-check](https://github.com/tidymodels/infer/actions/workflows/check-standard.yaml/badge.svg)](https://github.com/tidymodels/infer/actions/workflows/check-standard.yaml)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/infer)](https://cran.r-project.org/package=infer)
[![Coverage
Status](https://img.shields.io/codecov/c/github/tidymodels/infer/main.svg)](https://codecov.io/github/tidymodels/infer/?branch=main)
Status](https://img.shields.io/codecov/c/github/tidymodels/infer/main.svg)](https://app.codecov.io/github/tidymodels/infer/?branch=main)

The objective of this package is to perform statistical inference using
an expressive statistical grammar that coheres with the `tidyverse`
Expand Down
2 changes: 1 addition & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

## Reverse dependencies

We checked 6 reverse dependencies (3 from CRAN + 3 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package, and saw no new problems.
We checked 8 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package, and saw no new problems.
2 changes: 1 addition & 1 deletion man/deprecated.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/infer.Rd

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

4 changes: 2 additions & 2 deletions man/shade_confidence_interval.Rd

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

4 changes: 2 additions & 2 deletions man/shade_p_value.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/t_stat.Rd

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

0 comments on commit fdbcece

Please sign in to comment.