summary.dbcsp | R Documentation |
This function provides a summary of the dbcsp object and information about the performed process.
## S3 method for class 'dbcsp'
summary(object, ...)
object |
object of class |
... |
not currently used. |
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.
No return value, called for side effects.
dbcsp
, print
, train
, selectQ
, predict
, plot
, boxplot
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.