Skip to content

Commit de48da7

Browse files
authored
Merge pull request #283 from tidymodels/missing-raw-export
missed exporting the predict_raw generic in v 0.1.0
2 parents 948dbcf + 7875931 commit de48da7

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: parsnip
2-
Version: 0.0.5.9001
2+
Version: 0.1.0.9001
33
Title: A Common API to Modeling and Analysis Functions
44
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).
55
Authors@R: c(
@@ -31,7 +31,7 @@ Imports:
3131
prettyunits,
3232
vctrs (>= 0.2.0)
3333
Roxygen: list(markdown = TRUE)
34-
RoxygenNote: 7.1.0
34+
RoxygenNote: 7.1.0.9000
3535
Suggests:
3636
testthat,
3737
knitr,

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ export(predict_confint.model_fit)
137137
export(predict_numeric)
138138
export(predict_numeric.model_fit)
139139
export(predict_quantile.model_fit)
140+
export(predict_raw)
140141
export(predict_raw.model_fit)
141142
export(rand_forest)
142143
export(rpart_train)

R/predict_raw.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ predict_raw.model_fit <- function(object, new_data, opts = list(), ...) {
3636
}
3737

3838

39-
# @export
40-
# @rdname predict.model_fit
41-
# @inheritParams predict_raw.model_fit
39+
#' @export
40+
#' @keywords internal
41+
#' @rdname predict.model_fit
4242
predict_raw <- function(object, ...)
4343
UseMethod("predict_raw")

man/predict.model_fit.Rd

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

0 commit comments

Comments
 (0)