Skip to content

Commit 488dce9

Browse files
committed
exported convert_args
1 parent 4b478cf commit 488dce9

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: parsnip
2-
Version: 0.0.5.9000
2+
Version: 0.0.5.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(

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ export(boost_tree)
9898
export(check_empty_ellipse)
9999
export(check_final_param)
100100
export(control_parsnip)
101+
export(convert_args)
101102
export(convert_stan_interval)
102103
export(decision_tree)
103104
export(eval_args)

R/aaa.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ convert_stan_interval <- function(x, level = 0.95, lower = TRUE) {
3030
res
3131
}
3232

33+
#' Make a table of arguments
34+
#' @param model_name A character string for the model
35+
#' @keywords internal
36+
#' @export
3337
convert_args <- function(model_name) {
3438
envir <- get_model_env()
3539

man/convert_args.Rd

Lines changed: 15 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)