Description Usage Arguments Value Author(s)
View source: R/machine_learner.R
This functions applies one or several machine learning methods on a given dataset
1 2 3 4 5 6 | auto_machine_learner(
dataframe,
aim_variable,
co_variables,
method = c("DT", "BDT", "RF")
)
|
dataframe |
dataframe containing variables of interest |
aim_variable |
Character string with the name of the aim variable |
co_variables |
Character string with the name of the co-variables |
method |
default = c("DT","BDT","RF"); which method should be used: DecisionTree, BoostedDecisionTree and/or RandomForest? |
additionalparameters |
default = FALSE; list containing additional parameters for the ML procedures / e.g.: list(RF=list(ntree=10000)) |
list containing the models
Wolfgang Hamer
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.