| CMAR_C | R Documentation | 
CMAR_C Associative Classification Algorithm from KEEL.
CMAR_C(train, test, min_confidence, min_support, databaseCoverage)
train | 
 Train dataset as a data.frame object  | 
test | 
 Test dataset as a data.frame object  | 
min_confidence | 
 min_confidence. Default value = 0.5  | 
min_support | 
 min_support. Default value = 0.01  | 
databaseCoverage | 
 databaseCoverage. Default value = 4  | 
A data.frame with the actual and predicted classes for both train and test datasets.
data <- loadKeelDataset("breast")
#Create algorithm
algorithm <- RKEEL::CMAR_C(data, data)
#Run algorithm
algorithm$run()
#See results
algorithm$testPredictions
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.