diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2018-03-27 12:31:28 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2018-03-27 12:31:28 +0100 |
| commit | 004941896bac692d354c41a3334d20ee1d4627f7 (patch) | |
| tree | 2b11e42d8524843409e2bf8deb4ceb74c8b69347 /man/plot.gensvm.grid.Rd | |
| parent | updates to GenSVM C library (diff) | |
| download | rgensvm-004941896bac692d354c41a3334d20ee1d4627f7.tar.gz rgensvm-004941896bac692d354c41a3334d20ee1d4627f7.zip | |
GenSVM R package
Diffstat (limited to 'man/plot.gensvm.grid.Rd')
| -rw-r--r-- | man/plot.gensvm.grid.Rd | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/man/plot.gensvm.grid.Rd b/man/plot.gensvm.grid.Rd new file mode 100644 index 0000000..d54196f --- /dev/null +++ b/man/plot.gensvm.grid.Rd @@ -0,0 +1,41 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plot.gensvm.grid.R +\name{plot.gensvm.grid} +\alias{plot.gensvm.grid} +\title{Plot the simplex space of the best fitted model in the GenSVMGrid} +\usage{ +\method{plot}{gensvm.grid}(grid, x, ...) +} +\arguments{ +\item{grid}{A \code{gensvm.grid} object trained with refit=TRUE} + +\item{x}{the dataset to plot} + +\item{...}{further arguments are passed to the plot function} +} +\value{ +returns the object passed as input +} +\description{ +This is a wrapper which calls the plot function for the best +model in the provided GenSVMGrid object. See the documentation for +\code{\link{plot.gensvm}} for more information. +} +\examples{ +x <- iris[, -5] +y <- iris[, 5] + +grid <- gensvm.grid(x, y) +plot(grid, x) + +} +\author{ +Gerrit J.J. van den Burg, Patrick J.F. Groenen \cr +Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> +} +\references{ +Van den Burg, G.J.J. and Groenen, P.J.F. (2016). \emph{GenSVM: A Generalized +Multiclass Support Vector Machine}, Journal of Machine Learning Research, +17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. +} + |
