CreateSDTask {rsubgroup} | R Documentation |
Performs subgroup discovery according to the given task.
CreateSDTask(source, target, config = SDTaskConfig())
source |
a data.frame or the a character string giving the filename of an ARFF file to use. |
target |
the target variable (constructed by as.target) to consider for subgroup discovery. |
config |
an instance of SDTaskConfig providing various parameters for subgroup discovery. |
DiscoverSubgroups
.
DiscoverSubgroupsByTask
SDTaskConfig
# 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"))