CreateSDTask {rsubgroup} | R Documentation |
Creates a Subgroup Discovery Task
Description
Performs subgroup discovery according to the given task.
Usage
CreateSDTask(source, target, config = SDTaskConfig())
Arguments
source |
a data.frame or the a character string giving the filename of an ARFF file to use. Providing a file name directly provides the data to the subgroup discovery algorithms on the Java side, which is more memory efficient than converting the data frame to the Java representation. |
target |
the target variable (constructed by as.target) to consider for subgroup discovery. |
config |
an instance of SDTaskConfig providing various parameters for subgroup discovery. |
See Also
DiscoverSubgroups
.
DiscoverSubgroupsByTask
SDTaskConfig
Examples
# creating a task
data(credit.data)
# task with binary target
task <- CreateSDTask(credit.data, as.target("class", "good"))
# task with numeric target
taskNum <- CreateSDTask(credit.data, as.target("credit_amount"))
[Package rsubgroup version 1.1 Index]