Skip to content

Commit e375221

Browse files
authored
merge pr #411: infer v1.0.0
2 parents d534de5 + 00b959a commit e375221

File tree

158 files changed

+13621
-3639
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+13621
-3639
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
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: 0.5.4.9000
4+
Version: 1.0.0
55
Authors@R:
66
c(person(given = "Andrew",
77
family = "Bray",

NEWS.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# infer 0.5.4.9000
2-
3-
To be released as 1.0.0
1+
# infer 1.0.0
42

53
v1.0.0 is the first major release of the {infer} package! By and large, the core verbs `specify()`, `hypothesize()`, `generate()`, and `calculate()` will interface as they did before. This release makes several improvements to behavioral consistency of the package and introduces support for theory-based inference as well as randomization-based inference with multiple explanatory variables.
64

R/get_p_value.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ two_sided_p_value <- function(vec, obs_stat) {
257257
check_hypotheses_align <- function(x, obs_stat) {
258258
if (is_hypothesized(x) &&
259259
is_hypothesized(obs_stat) &&
260-
attr(x, "params") != attr(obs_stat, "params")) {
260+
any(attr(x, "params") != attr(obs_stat, "params"))) {
261261
warning_glue(
262262
"`x` and `obs_stat` were generated using different null hypotheses. ",
263263
"This workflow is untested and results may not mean what you think ",

cran-comments.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@
1111

1212
## Reverse dependencies
1313

14-
We checked six reverse dependencies, five of which are on CRAN, with the
15-
remaining on bioconductor, and found no new issues.
14+
We checked 6 reverse dependencies (5 from CRAN + 1 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package, and saw no new problems.

docs/404.html

Lines changed: 69 additions & 128 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)