summary.dbcsp {dbcsp} | R Documentation |
Summary function implemented by dbcsp class
Description
This function provides a summary of the dbcsp object and information about the performed process.
Usage
## S3 method for class 'dbcsp'
summary(object, ...)
Arguments
object |
object of class |
... |
not currently used. |
Details
It prints the following information:
Length and shape of the list of matrices of each class.
The number of vectors (dimensions) used in the CSP projection.
Distance used when performing the Common Spatial Patterns algorithm.
If the training process has already been performed, the obtained training accuracy value.
Value
No return value, called for side effects.
See Also
dbcsp
, print
, train
, selectQ
, predict
, plot
, boxplot
Examples
# Read data from 2 classes
x <- AR.data$come[1:30]
y <- AR.data$five[1:30]
mydbcsp <- new("dbcsp", X1 = x, X2 = y)
summary(mydbcsp)
[Package dbcsp version 0.0.2.1 Index]