Skip to content

Commit cffc082

Browse files
authored
merge pr #375: infer 0.5.4
2 parents 26e9beb + ed39d81 commit cffc082

39 files changed

+1052
-708
lines changed

.Rbuildignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
^README\.Rmd$
55
^figs$
66
^profiles*
7-
^\.travis\.yml$
87
^examples*
98
^codecov\.yml$
109
^docs*

.github/workflows/check-standard.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
config:
23+
- {os: macOS-latest, r: 'release'}
2324
- {os: windows-latest, r: 'release'}
24-
- {os: macOS-latest, r: 'release'}
25-
- {os: macOS-latest, r: 'devel'}
26-
- {os: ubuntu-16.04, r: 'release', rspm: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}
25+
- {os: windows-latest, r: '3.6'}
26+
- {os: ubuntu-16.04, r: 'devel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest", http-user-agent: "R/4.0.0 (ubuntu-16.04) R (4.0.0 x86_64-pc-linux-gnu x86_64 linux-gnu) on GitHub Actions" }
27+
- {os: ubuntu-16.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
2728

2829
env:
2930
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true

.travis.yml

-61
This file was deleted.

DESCRIPTION

+89-37
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,105 @@
1-
Package: infer
21
Type: Package
2+
Package: infer
33
Title: Tidy Statistical Inference
4-
Version: 0.5.3
5-
Authors@R: c(
6-
person("Andrew", "Bray", email = "abray@reed.edu", role = c("aut", "cre")),
7-
person("Chester", "Ismay", email = "chester.ismay@gmail.com", role = "aut"),
8-
person("Evgeni", "Chasnovski", email = "evgeni.chasnovski@gmail.com", role = "aut"),
9-
person("Ben", "Baumer", email = "ben.baumer@gmail.com", role = "aut"),
10-
person("Mine", "Cetinkaya-Rundel", email = "mine@stat.duke.edu", role = "aut"),
11-
person("Simon", "Couch", email = "simonpatrickcouch@gmail.com", role = "ctb"),
12-
person("Ted", "Laderas", email = "tedladeras@gmail.com", role = "ctb"),
13-
person("Nick", "Solomon", email = "nick.solomon@datacamp.com", role = "ctb"),
14-
person("Johanna", "Hardin", email = "Jo.Hardin@pomona.edu", role = "ctb"),
15-
person("Albert Y.", "Kim", email = "albert.ys.kim@gmail.com", role = "ctb"),
16-
person("Neal", "Fultz", email = "nfultz@gmail.com", role = "ctb"),
17-
person("Doug", "Friedman", email = "doug.nhp@gmail.com", role = "ctb"),
18-
person("Richie", "Cotton", email = "richie@datacamp.com", role = "ctb"),
19-
person("Brian", "Fannin", email = "captain@pirategrunt.com", role = "ctb"))
20-
Description: The objective of this package is to perform inference using an expressive statistical grammar that coheres with the tidy design framework.
4+
Version: 0.5.4
5+
Authors@R:
6+
c(person(given = "Andrew",
7+
family = "Bray",
8+
role = c("aut", "cre"),
9+
email = "abray@reed.edu"),
10+
person(given = "Chester",
11+
family = "Ismay",
12+
role = "aut",
13+
email = "chester.ismay@gmail.com",
14+
comment = c(ORCID = "0000-0003-2820-2547")),
15+
person(given = "Evgeni",
16+
family = "Chasnovski",
17+
role = "aut",
18+
email = "evgeni.chasnovski@gmail.com",
19+
comment = c(ORCID = "0000-0002-1617-4019")),
20+
person(given = "Ben",
21+
family = "Baumer",
22+
role = "aut",
23+
email = "ben.baumer@gmail.com",
24+
comment = c(ORCID = "0000-0002-3279-0516")),
25+
person(given = "Mine",
26+
family = "Cetinkaya-Rundel",
27+
role = "aut",
28+
email = "mine@stat.duke.edu",
29+
comment = c(ORCID = "0000-0001-6452-2420")),
30+
person(given = "Simon",
31+
family = "Couch",
32+
role = "ctb",
33+
email = "simonpatrickcouch@gmail.com"),
34+
person(given = "Ted",
35+
family = "Laderas",
36+
role = "ctb",
37+
email = "tedladeras@gmail.com",
38+
comment = c(ORCID = "0000-0002-6207-7068")),
39+
person(given = "Nick",
40+
family = "Solomon",
41+
role = "ctb",
42+
email = "nick.solomon@datacamp.com"),
43+
person(given = "Johanna",
44+
family = "Hardin",
45+
role = "ctb",
46+
email = "Jo.Hardin@pomona.edu"),
47+
person(given = "Albert Y.",
48+
family = "Kim",
49+
role = "ctb",
50+
email = "albert.ys.kim@gmail.com",
51+
comment = c(ORCID = "0000-0001-7824-306X")),
52+
person(given = "Neal",
53+
family = "Fultz",
54+
role = "ctb",
55+
email = "nfultz@gmail.com"),
56+
person(given = "Doug",
57+
family = "Friedman",
58+
role = "ctb",
59+
email = "doug.nhp@gmail.com"),
60+
person(given = "Richie",
61+
family = "Cotton",
62+
role = "ctb",
63+
email = "richie@datacamp.com",
64+
comment = c(ORCID = "0000-0003-2504-802X")),
65+
person(given = "Brian",
66+
family = "Fannin",
67+
role = "ctb",
68+
email = "captain@pirategrunt.com"))
69+
Description: The objective of this package is to perform
70+
inference using an expressive statistical grammar that coheres with
71+
the tidy design framework.
2172
License: CC0
22-
Encoding: UTF-8
23-
LazyData: true
73+
URL: https://github.com/tidymodels/infer,
74+
https://infer.tidymodels.org/
75+
BugReports: https://github.com/tidymodels/infer/issues
76+
Depends:
77+
R (>= 3.5.0)
2478
Imports:
2579
dplyr (>= 0.7.0),
26-
methods,
27-
tibble,
28-
rlang (>= 0.2.0),
2980
ggplot2,
30-
magrittr,
3181
glue (>= 1.3.0),
3282
grDevices,
33-
purrr
34-
Depends:
35-
R (>= 3.5.0)
36-
Suggests:
83+
magrittr,
84+
methods,
85+
purrr,
86+
rlang (>= 0.2.0),
87+
tibble
88+
Suggests:
3789
broom,
90+
covr,
3891
devtools (>= 1.12.0),
92+
fs,
3993
knitr,
40-
tidyr,
41-
rmarkdown,
4294
nycflights13,
95+
rmarkdown,
4396
stringr,
4497
testthat,
45-
covr,
46-
vdiffr,
47-
fs
48-
URL: https://github.com/tidymodels/infer,
49-
https://infer.netlify.com/
50-
BugReports: https://github.com/tidymodels/infer/issues
98+
tidyr,
99+
vdiffr
100+
VignetteBuilder:
101+
knitr
102+
Encoding: UTF-8
103+
LazyData: true
51104
Roxygen: list(markdown = TRUE)
52105
RoxygenNote: 7.1.1
53-
VignetteBuilder: knitr

NAMESPACE

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export(hypothesize)
1717
export(p_value)
1818
export(prop_test)
1919
export(rep_sample_n)
20+
export(rep_slice_sample)
2021
export(shade_ci)
2122
export(shade_confidence_interval)
2223
export(shade_p_value)
@@ -28,7 +29,6 @@ export(visualise)
2829
export(visualize)
2930
importFrom(dplyr,bind_rows)
3031
importFrom(dplyr,group_by)
31-
importFrom(dplyr,inner_join)
3232
importFrom(dplyr,mutate_if)
3333
importFrom(dplyr,n)
3434
importFrom(dplyr,one_of)

NEWS.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# infer 0.5.4
2+
3+
- `rep_sample_n()` no longer errors when supplied a `prob` argument (#279)
4+
- Added `rep_slice_sample()`, a light wrapper around `rep_sample_n()`, that
5+
more closely resembles `dplyr::slice_sample()` (the function that supersedes
6+
`dplyr::sample_n()`) (#325)
7+
- Added a `success`, `correct`, and `z` argument to `prop_test()`
8+
(#343, #347, #353)
9+
- Implemented observed statistic calculation for the standardized proportion
10+
$z$ statistic (#351, #353)
11+
- Various bug fixes and improvements to documentation and errors.
12+
113
# infer 0.5.3
214

315
## Breaking changes
@@ -172,7 +184,7 @@ current implementations being
172184
They now live in `specify()`.
173185
- Updated documentation with examples
174186
- Created `pkgdown` site materials
175-
- Deployed to https://infer.netlify.com
187+
- Deployed to https://https://infer.tidymodels.org/
176188

177189

178190
# infer 0.0.1

0 commit comments

Comments
 (0)