|
1 | 1 | Package: parsnip |
2 | | -Version: 0.1.6.9000 |
3 | 2 | Title: A Common API to Modeling and Analysis Functions |
4 | | -Description: A common interface is provided to allow users to specify a model without having to remember the different argument names across different functions or computational engines (e.g. 'R', 'Spark', 'Stan', etc). |
5 | | -Authors@R: c( |
6 | | - person(given = "Max", family = "Kuhn", email = "max@rstudio.com", role = c("aut", "cre")), |
7 | | - person(given = "Davis", family = "Vaughan", email = "davis@rstudio.com", role = c("aut")), |
8 | | - person(given = "Emil", family = "Hvitfeldt", email = "emilhhvitfeldt@gmail.com", role = c("ctb")), |
9 | | - person("RStudio", role = "cph")) |
| 3 | +Version: 0.1.6.9000 |
| 4 | +Authors@R: |
| 5 | + c(person(given = "Max", |
| 6 | + family = "Kuhn", |
| 7 | + role = c("aut", "cre"), |
| 8 | + email = "max@rstudio.com"), |
| 9 | + person(given = "Davis", |
| 10 | + family = "Vaughan", |
| 11 | + role = "aut", |
| 12 | + email = "davis@rstudio.com"), |
| 13 | + person(given = "Emil", |
| 14 | + family = "Hvitfeldt", |
| 15 | + role = "ctb", |
| 16 | + email = "emilhhvitfeldt@gmail.com"), |
| 17 | + person(given = "RStudio", |
| 18 | + role = "cph")) |
10 | 19 | Maintainer: Max Kuhn <max@rstudio.com> |
| 20 | +Description: A common interface is provided to allow users to specify a |
| 21 | + model without having to remember the different argument names across |
| 22 | + different functions or computational engines (e.g. 'R', 'Spark', |
| 23 | + 'Stan', etc). |
| 24 | +License: MIT + file LICENSE |
11 | 25 | URL: https://parsnip.tidymodels.org, https://github.com/tidymodels/parsnip |
12 | 26 | BugReports: https://github.com/tidymodels/parsnip/issues |
13 | | -License: MIT + file LICENSE |
14 | | -Encoding: UTF-8 |
15 | | -LazyData: true |
16 | | -ByteCompile: true |
17 | | -VignetteBuilder: knitr |
18 | 27 | Depends: |
19 | 28 | R (>= 2.10) |
20 | 29 | Imports: |
21 | 30 | dplyr (>= 0.8.0.1), |
22 | | - rlang (>= 0.3.1), |
23 | | - purrr, |
24 | | - utils, |
25 | | - tibble (>= 2.1.1), |
26 | 31 | generics (>= 0.1.0), |
| 32 | + globals, |
27 | 33 | glue, |
| 34 | + hardhat (>= 0.1.5.9000), |
28 | 35 | lifecycle, |
29 | 36 | magrittr, |
| 37 | + prettyunits, |
| 38 | + purrr, |
| 39 | + rlang (>= 0.3.1), |
30 | 40 | stats, |
| 41 | + tibble (>= 2.1.1), |
31 | 42 | tidyr (>= 1.0.0), |
32 | | - globals, |
33 | | - prettyunits, |
34 | | - vctrs (>= 0.2.0), |
35 | | - hardhat (>= 0.1.5.9000) |
36 | | -Roxygen: list(markdown = TRUE) |
37 | | -RoxygenNote: 7.1.1.9001 |
| 43 | + utils, |
| 44 | + vctrs (>= 0.2.0) |
38 | 45 | Suggests: |
39 | | - testthat, |
40 | | - knitr, |
41 | | - rmarkdown, |
42 | | - survival, |
43 | | - keras, |
44 | | - xgboost, |
45 | | - covr, |
46 | 46 | C50, |
47 | | - sparklyr (>= 1.0.0), |
| 47 | + covr, |
| 48 | + dials (>= 0.0.9.9000), |
48 | 49 | earth, |
| 50 | + keras, |
49 | 51 | kernlab, |
50 | 52 | kknn, |
51 | | - randomForest, |
52 | | - ranger (>= 0.12.0), |
53 | | - rpart, |
54 | | - MASS, |
55 | | - nlme, |
56 | | - modeldata, |
| 53 | + knitr, |
57 | 54 | LiblineaR, |
| 55 | + MASS, |
58 | 56 | Matrix, |
59 | 57 | mgcv, |
60 | | - dials (>= 0.0.9.9000) |
61 | | -Remotes: |
62 | | - tidymodels/dials, |
63 | | - topepo/C5.0, |
64 | | - tidymodels/hardhat |
65 | | - |
| 58 | + modeldata, |
| 59 | + nlme, |
| 60 | + randomForest, |
| 61 | + ranger (>= 0.12.0), |
| 62 | + rmarkdown, |
| 63 | + rpart, |
| 64 | + sparklyr (>= 1.0.0), |
| 65 | + survival, |
| 66 | + testthat, |
| 67 | + xgboost |
| 68 | +VignetteBuilder: |
| 69 | + knitr |
| 70 | +Remotes: |
| 71 | + tidymodels/dials |
| 72 | +ByteCompile: true |
| 73 | +Config/Needs/website:C50, earth, glmnet, keras, kernlab, kknn, LiblineaR, |
| 74 | + mgcv, nnet, parsnip, randomForest, ranger, rpart, rstanarm, xgboost |
| 75 | +Encoding: UTF-8 |
| 76 | +LazyData: true |
| 77 | +Roxygen: list(markdown = TRUE) |
| 78 | +RoxygenNote: 7.1.1.9001 |
0 commit comments