Description Usage Arguments Value Examples
View source: R/uploadParConfig.R
Uploads a ParConfig and returns the ID.
1 | uploadParConfig(par.config, user.email = NULL, as.default = FALSE)
|
par.config |
[ |
user.email |
[ |
as.default |
[ |
[character
]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | par.set = makeParamSet(
makeIntegerParam(
id = "mtry",
lower = expression(floor(p^0.25)),
upper = expression(ceiling(p^0.75)),
default = expression(round(p^0.5))),
keys = "p")
par.config = makeParConfig(
par.set = par.set,
par.vals = list(ntree = 200),
learner.name = "randomForest"
)
## Not run:
id = uploadParConfig(par.config, "jon.doe@example.com")
print(id)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.