-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
1,052 additions
and
708 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
^README\.Rmd$ | ||
^figs$ | ||
^profiles* | ||
^\.travis\.yml$ | ||
^examples* | ||
^codecov\.yml$ | ||
^docs* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,105 @@ | ||
Package: infer | ||
Type: Package | ||
Package: infer | ||
Title: Tidy Statistical Inference | ||
Version: 0.5.3 | ||
Authors@R: c( | ||
person("Andrew", "Bray", email = "[email protected]", role = c("aut", "cre")), | ||
person("Chester", "Ismay", email = "[email protected]", role = "aut"), | ||
person("Evgeni", "Chasnovski", email = "[email protected]", role = "aut"), | ||
person("Ben", "Baumer", email = "[email protected]", role = "aut"), | ||
person("Mine", "Cetinkaya-Rundel", email = "[email protected]", role = "aut"), | ||
person("Simon", "Couch", email = "[email protected]", role = "ctb"), | ||
person("Ted", "Laderas", email = "[email protected]", role = "ctb"), | ||
person("Nick", "Solomon", email = "[email protected]", role = "ctb"), | ||
person("Johanna", "Hardin", email = "[email protected]", role = "ctb"), | ||
person("Albert Y.", "Kim", email = "[email protected]", role = "ctb"), | ||
person("Neal", "Fultz", email = "[email protected]", role = "ctb"), | ||
person("Doug", "Friedman", email = "[email protected]", role = "ctb"), | ||
person("Richie", "Cotton", email = "[email protected]", role = "ctb"), | ||
person("Brian", "Fannin", email = "[email protected]", role = "ctb")) | ||
Description: The objective of this package is to perform inference using an expressive statistical grammar that coheres with the tidy design framework. | ||
Version: 0.5.4 | ||
Authors@R: | ||
c(person(given = "Andrew", | ||
family = "Bray", | ||
role = c("aut", "cre"), | ||
email = "[email protected]"), | ||
person(given = "Chester", | ||
family = "Ismay", | ||
role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-2820-2547")), | ||
person(given = "Evgeni", | ||
family = "Chasnovski", | ||
role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-1617-4019")), | ||
person(given = "Ben", | ||
family = "Baumer", | ||
role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-3279-0516")), | ||
person(given = "Mine", | ||
family = "Cetinkaya-Rundel", | ||
role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-6452-2420")), | ||
person(given = "Simon", | ||
family = "Couch", | ||
role = "ctb", | ||
email = "[email protected]"), | ||
person(given = "Ted", | ||
family = "Laderas", | ||
role = "ctb", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-6207-7068")), | ||
person(given = "Nick", | ||
family = "Solomon", | ||
role = "ctb", | ||
email = "[email protected]"), | ||
person(given = "Johanna", | ||
family = "Hardin", | ||
role = "ctb", | ||
email = "[email protected]"), | ||
person(given = "Albert Y.", | ||
family = "Kim", | ||
role = "ctb", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-7824-306X")), | ||
person(given = "Neal", | ||
family = "Fultz", | ||
role = "ctb", | ||
email = "[email protected]"), | ||
person(given = "Doug", | ||
family = "Friedman", | ||
role = "ctb", | ||
email = "[email protected]"), | ||
person(given = "Richie", | ||
family = "Cotton", | ||
role = "ctb", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-2504-802X")), | ||
person(given = "Brian", | ||
family = "Fannin", | ||
role = "ctb", | ||
email = "[email protected]")) | ||
Description: The objective of this package is to perform | ||
inference using an expressive statistical grammar that coheres with | ||
the tidy design framework. | ||
License: CC0 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
URL: https://github.com/tidymodels/infer, | ||
https://infer.tidymodels.org/ | ||
BugReports: https://github.com/tidymodels/infer/issues | ||
Depends: | ||
R (>= 3.5.0) | ||
Imports: | ||
dplyr (>= 0.7.0), | ||
methods, | ||
tibble, | ||
rlang (>= 0.2.0), | ||
ggplot2, | ||
magrittr, | ||
glue (>= 1.3.0), | ||
grDevices, | ||
purrr | ||
Depends: | ||
R (>= 3.5.0) | ||
Suggests: | ||
magrittr, | ||
methods, | ||
purrr, | ||
rlang (>= 0.2.0), | ||
tibble | ||
Suggests: | ||
broom, | ||
covr, | ||
devtools (>= 1.12.0), | ||
fs, | ||
knitr, | ||
tidyr, | ||
rmarkdown, | ||
nycflights13, | ||
rmarkdown, | ||
stringr, | ||
testthat, | ||
covr, | ||
vdiffr, | ||
fs | ||
URL: https://github.com/tidymodels/infer, | ||
https://infer.netlify.com/ | ||
BugReports: https://github.com/tidymodels/infer/issues | ||
tidyr, | ||
vdiffr | ||
VignetteBuilder: | ||
knitr | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.1.1 | ||
VignetteBuilder: knitr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.