coef.gensvm.grid {gensvm} | R Documentation |
Get the parameter grid from a GenSVM Grid object
Description
Returns the parameter grid of a gensvm.grid
object.
Usage
## S3 method for class 'gensvm.grid'
coef(object, ...)
Arguments
object |
a |
... |
further arguments are ignored |
Value
The parameter grid of the GenSVMGrid object as a data frame.
Author(s)
Gerrit J.J. van den Burg, Patrick J.F. Groenen
Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com>
References
Van den Burg, G.J.J. and Groenen, P.J.F. (2016). GenSVM: A Generalized Multiclass Support Vector Machine, Journal of Machine Learning Research, 17(225):1–42. URL https://jmlr.org/papers/v17/14-526.html.
See Also
Examples
x <- iris[, -5]
y <- iris[, 5]
grid <- gensvm.grid(x, y)
pg <- coef(grid)
[Package gensvm version 0.1.7 Index]