modelInteractions: Model feature interactions

Description Usage Arguments Value Author(s) Examples

View source: R/modelInteractions.R

Description

Finds and calculates the features that have a strong ability to be used as interactions in the dataset

Usage

1
modelInteractions(train, trainedModel, sample = 0.1, seed = 1991)

Arguments

train

[data.frame | Required] Training set on which the model was trained

trainedModel

[mlr obj | Required] MLR trained moodel object

sample

[numeric | Optional] A number between 0 - 1 to sub-sample the training set for faster computational time. Default of 0.1

seed

[integer | Optional] Random seed number for reproducable results. Default of 1991

Value

List object containing a data.frame and a plot object.

Author(s)

Xander Horn

Examples

1
2
mod <- mlr::train(makeLearner("classif.ranger"), iris.task)
modelInteractions(train = iris, mod)

XanderHorn/autoML documentation built on Aug. 5, 2020, 11:45 a.m.