summary.epx: Summarising an "'epx'" object

Description Usage Arguments Value Examples

View source: R/summaryEPX.R

Description

summary method for class "epx".

Usage

1
2
## S3 method for class 'epx'
summary(object, ...)

Arguments

object

Object of class "epx" returned by epx.

...

Further arguments passed to or from other methods.

Value

Prints a summary of the object returned by the phalanx-formation algorithm epx.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# Example with data(harvest)


## Phalanx-formation using a base classifier with 50 trees (default = 500)

set.seed(761)
model <- epx(x = harvest[, -4], y = harvest[, 4],
            classifier.args = list(ntree = 50))
summary(model)

## The summary agrees with
(model$PHALANXES)[[4]]

EPX documentation built on July 7, 2021, 1:06 a.m.