print.mcfs: Prints mcfs result

Description Usage Arguments Examples

View source: R/rmcfs.R

Description

Prints basic information about the MCFS-ID result: top features, cutoff values, confusion matrix obtained for s \cdot t trees and classification rules obtained by Ripper (jrip) algorithm.

Usage

1
2
  ## S3 method for class 'mcfs'
print(x, ...)

Arguments

x

'mcfs' object - result of the MCFS-ID experiment returned by mcfs function.

...

additional printing parameters.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
  ## Not run: ###dontrunbegin

  # create input data
  adata <- artificial.data(rnd_features = 10)
  showme(adata)
  
  # Parametrize and run MCFS-ID procedure
  result <- mcfs(class~., adata, cutoffPermutations = 0, featureFreq = 10,
                  finalCV = FALSE, finalRuleset = TRUE, threadsNumber = 2)

  # Print basic information about mcfs result.
  print(result)
  
  
## End(Not run)###dontrunend

rmcfs documentation built on Sept. 18, 2021, 5:07 p.m.

Related to print.mcfs in rmcfs...