Skip to content

Commit fdbcece

Browse files
authored
release v1.0.6 (#524)
1 parent 3866325 commit fdbcece

14 files changed

+21
-21
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: infer
33
Title: Tidy Statistical Inference
4-
Version: 1.0.5.9000
4+
Version: 1.0.6
55
Authors@R: c(
66
person("Andrew", "Bray", , "[email protected]", role = "aut"),
77
person("Chester", "Ismay", , "[email protected]", role = "aut",
@@ -67,5 +67,5 @@ Config/Needs/website: tidyverse/tidytemplate
6767
Encoding: UTF-8
6868
LazyData: true
6969
Roxygen: list(markdown = TRUE)
70-
RoxygenNote: 7.2.3
70+
RoxygenNote: 7.3.0
7171
Config/testthat/edition: 3

NEWS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# infer v1.0.5.9000 (development version)
2-
3-
* 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.
1+
# infer v1.0.6
42

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

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

9+
* 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).
10+
1111
* 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).
1212

1313
# infer v1.0.5

R/deprecated.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#' Deprecated functions and objects
22
#'
33
#' These functions and objects should no longer be used. They will be removed
4-
#' in a future release of \code{infer}.
4+
#' in a future release of infer.
55
#' @param x See the non-deprecated function.
66
#' @param level See the non-deprecated function.
77
#' @param type See the non-deprecated function.

R/shade_confidence_interval.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
#' end points as a vertical lines on the plot.
2121
#' @param fill A character or hex string specifying the color to shade the
2222
#' confidence interval. If `NULL` then no shading is actually done.
23-
#' @param ... Other arguments passed along to \\{ggplot2\\} functions.
23+
#' @param ... Other arguments passed along to ggplot2 functions.
2424
#'
25-
#' @return If added to an existing {infer} visualization, a \\{ggplot2\\}
25+
#' @return If added to an existing infer visualization, a ggplot2
2626
#' object displaying the supplied intervals on top of its corresponding
2727
#' distribution. Otherwise, an `infer_layer` list.
2828
#'

R/shade_p_value.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
#' statistic as a vertical line on the plot.
2323
#' @param fill A character or hex string specifying the color to shade the
2424
#' p-value region. If `NULL`, the function will not shade any area.
25-
#' @param ... Other arguments passed along to \\{ggplot2\\} functions.
25+
#' @param ... Other arguments passed along to ggplot2 functions.
2626
#' For expert use only.
2727
#'
28-
#' @return If added to an existing {infer} visualization, a \\{ggplot2\\}
28+
#' @return If added to an existing infer visualization, a ggplot2
2929
#' object displaying the supplied statistic on top of its corresponding
3030
#' distribution. Otherwise, an `infer_layer` list.
3131
#'

R/wrappers.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ t_test <- function(x, formula,
120120
#' @param mu A numeric value giving the hypothesized null mean value for a one
121121
#' sample test and the hypothesized difference for a two sample test.
122122
#' @inheritParams t_test
123-
#' @param ... Pass in arguments to \\{infer\\} functions.
123+
#' @param ... Pass in arguments to infer functions.
124124
#'
125125
#' @examples
126126
#' library(tidyr)

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ output: github_document
1414

1515
[![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)
1616
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/infer)](https://cran.r-project.org/package=infer)
17-
[![Coverage Status](https://img.shields.io/codecov/c/github/tidymodels/infer/main.svg)](https://codecov.io/github/tidymodels/infer/?branch=main)
17+
[![Coverage Status](https://img.shields.io/codecov/c/github/tidymodels/infer/main.svg)](https://app.codecov.io/github/tidymodels/infer/?branch=main)
1818

1919
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.
2020

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![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)
1010
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/infer)](https://cran.r-project.org/package=infer)
1111
[![Coverage
12-
Status](https://img.shields.io/codecov/c/github/tidymodels/infer/main.svg)](https://codecov.io/github/tidymodels/infer/?branch=main)
12+
Status](https://img.shields.io/codecov/c/github/tidymodels/infer/main.svg)](https://app.codecov.io/github/tidymodels/infer/?branch=main)
1313

1414
The objective of this package is to perform statistical inference using
1515
an expressive statistical grammar that coheres with the `tidyverse`

cran-comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
## Reverse dependencies
66

7-
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.
7+
We checked 8 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package, and saw no new problems.

man/deprecated.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)