|
1 |
| -Package: infer |
2 | 1 | Type: Package
|
| 2 | +Package: infer |
3 | 3 | 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. |
21 | 72 | 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) |
24 | 78 | Imports:
|
25 | 79 | dplyr (>= 0.7.0),
|
26 |
| - methods, |
27 |
| - tibble, |
28 |
| - rlang (>= 0.2.0), |
29 | 80 | ggplot2,
|
30 |
| - magrittr, |
31 | 81 | glue (>= 1.3.0),
|
32 | 82 | 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: |
37 | 89 | broom,
|
| 90 | + covr, |
38 | 91 | devtools (>= 1.12.0),
|
| 92 | + fs, |
39 | 93 | knitr,
|
40 |
| - tidyr, |
41 |
| - rmarkdown, |
42 | 94 | nycflights13,
|
| 95 | + rmarkdown, |
43 | 96 | stringr,
|
44 | 97 | 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 |
51 | 104 | Roxygen: list(markdown = TRUE)
|
52 | 105 | RoxygenNote: 7.1.1
|
53 |
| -VignetteBuilder: knitr |
|
0 commit comments