diff options
| -rw-r--r-- | R/coef.gensvm.R | 4 | ||||
| -rw-r--r-- | R/coef.gensvm.grid.R | 3 | ||||
| -rw-r--r-- | R/gensvm-package.R | 3 | ||||
| -rw-r--r-- | R/gensvm.R | 2 | ||||
| -rw-r--r-- | R/gensvm.accuracy.R | 3 | ||||
| -rw-r--r-- | R/gensvm.grid.R | 5 | ||||
| -rw-r--r-- | R/gensvm.maxabs.scale.R | 4 | ||||
| -rw-r--r-- | R/gensvm.refit.R | 7 | ||||
| -rw-r--r-- | R/gensvm.train.test.split.R | 3 | ||||
| -rw-r--r-- | R/plot.gensvm.R | 4 | ||||
| -rw-r--r-- | R/plot.gensvm.grid.R | 8 | ||||
| -rw-r--r-- | R/predict.gensvm.R | 10 | ||||
| -rw-r--r-- | R/predict.gensvm.grid.R | 8 | ||||
| -rw-r--r-- | R/print.gensvm.R | 4 | ||||
| -rw-r--r-- | R/print.gensvm.grid.R | 5 | ||||
| -rw-r--r-- | man/coef.gensvm.Rd | 4 | ||||
| -rw-r--r-- | man/coef.gensvm.grid.Rd | 3 | ||||
| -rw-r--r-- | man/gensvm-package.Rd | 3 | ||||
| -rw-r--r-- | man/gensvm.Rd | 2 | ||||
| -rw-r--r-- | man/gensvm.accuracy.Rd | 3 | ||||
| -rw-r--r-- | man/gensvm.grid.Rd | 5 | ||||
| -rw-r--r-- | man/gensvm.maxabs.scale.Rd | 4 | ||||
| -rw-r--r-- | man/gensvm.refit.Rd | 3 | ||||
| -rw-r--r-- | man/gensvm.train.test.split.Rd | 3 | ||||
| -rw-r--r-- | man/plot.gensvm.Rd | 4 | ||||
| -rw-r--r-- | man/plot.gensvm.grid.Rd | 4 | ||||
| -rw-r--r-- | man/predict.gensvm.Rd | 4 | ||||
| -rw-r--r-- | man/predict.gensvm.grid.Rd | 4 | ||||
| -rw-r--r-- | man/print.gensvm.Rd | 4 | ||||
| -rw-r--r-- | man/print.gensvm.grid.Rd | 5 |
30 files changed, 111 insertions, 17 deletions
diff --git a/R/coef.gensvm.R b/R/coef.gensvm.R index 45eeb13..09febc2 100644 --- a/R/coef.gensvm.R +++ b/R/coef.gensvm.R @@ -21,6 +21,10 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{gensvm}}, \code{\link{plot.gensvm}}, +#' \code{\link{predict.gensvm}}, \code{\link{gensvm-package}} +#' #' @method coef gensvm #' @export #' diff --git a/R/coef.gensvm.grid.R b/R/coef.gensvm.grid.R index 15e6525..3765c32 100644 --- a/R/coef.gensvm.grid.R +++ b/R/coef.gensvm.grid.R @@ -16,6 +16,9 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{gensvm.grid}}, \code{\link{gensvm-package}} +#' #' @method coef gensvm.grid #' @export #' diff --git a/R/gensvm-package.R b/R/gensvm-package.R index f664577..4c27695 100644 --- a/R/gensvm-package.R +++ b/R/gensvm-package.R @@ -98,6 +98,9 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{gensvm}}, \code{\link{gensvm.grid}} +#' #' @aliases #' gensvm.package #' @@ -75,7 +75,7 @@ #' #' @seealso #' \code{\link{coef}}, \code{\link{print}}, \code{\link{predict}}, -#' \code{\link{plot}}, and \code{\link{gensvm.grid}}. +#' \code{\link{plot}}, \code{\link{gensvm.grid}}, \code{\link{gensvm-package}} #' #' @export #' @useDynLib gensvm_wrapper, .registration = TRUE diff --git a/R/gensvm.accuracy.R b/R/gensvm.accuracy.R index dbcd3cc..9a60411 100644 --- a/R/gensvm.accuracy.R +++ b/R/gensvm.accuracy.R @@ -13,7 +13,8 @@ #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' #' @seealso -#' \code{\link{predict.gensvm.grid}} +#' \code{\link{predict.gensvm.grid}}, \code{\link{predict.gensvm}}, +#' \code{\link{gensvm-package}} #' #' @export #' diff --git a/R/gensvm.grid.R b/R/gensvm.grid.R index 2b90e57..eeeb620 100644 --- a/R/gensvm.grid.R +++ b/R/gensvm.grid.R @@ -118,8 +118,9 @@ #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' #' @seealso -#' \code{\link{predict.gensvm.grid}}, \code{\link{print.gensvm.grid}}, and -#' \code{\link{gensvm}}. +#' \code{\link{predict.gensvm.grid}}, \code{\link{print.gensvm.grid}}, +#' \code{\link{plot.gensvm.grid}}, \code{\link{gensvm}}, +#' \code{\link{gensvm-package}} #' #' @export #' diff --git a/R/gensvm.maxabs.scale.R b/R/gensvm.maxabs.scale.R index 42b0be2..47a6340 100644 --- a/R/gensvm.maxabs.scale.R +++ b/R/gensvm.maxabs.scale.R @@ -27,6 +27,10 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{gensvm}}, \code{\link{gensvm.grid}}, +#' \code{\link{gensvm.train.test.split}}, \code{\link{gensvm-package}} +#' #' @export #' #' @examples diff --git a/R/gensvm.refit.R b/R/gensvm.refit.R index c0bbf20..b7a1a15 100644 --- a/R/gensvm.refit.R +++ b/R/gensvm.refit.R @@ -14,8 +14,6 @@ #' #' @return a new fitted \code{gensvm} model #' -#' @export -#' #' @author #' Gerrit J.J. van den Burg, Patrick J.F. Groenen \cr #' Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> @@ -25,6 +23,11 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{gensvm}}, \code{\link{gensvm-package}} +#' +#' @export +#' #' @examples #' x <- iris[, -5] #' y <- iris[, 5] diff --git a/R/gensvm.train.test.split.R b/R/gensvm.train.test.split.R index 406f80e..eca4b06 100644 --- a/R/gensvm.train.test.split.R +++ b/R/gensvm.train.test.split.R @@ -28,6 +28,9 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{gensvm}}, \code{\link{gensvm-package}} +#' #' @export #' #' @examples diff --git a/R/plot.gensvm.R b/R/plot.gensvm.R index cbad9f0..5c560e3 100644 --- a/R/plot.gensvm.R +++ b/R/plot.gensvm.R @@ -33,6 +33,10 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{plot.gensvm.grid}}, \code{\link{predict.gensvm}}, +#' \code{\link{gensvm}}, \code{\link{gensvm-package}} +#' #' @method plot gensvm #' @export #' diff --git a/R/plot.gensvm.grid.R b/R/plot.gensvm.grid.R index da101e6..6f042e9 100644 --- a/R/plot.gensvm.grid.R +++ b/R/plot.gensvm.grid.R @@ -10,8 +10,6 @@ #' #' @return returns the object passed as input #' -#' @export -#' #' @author #' Gerrit J.J. van den Burg, Patrick J.F. Groenen \cr #' Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> @@ -21,6 +19,12 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{plot.gensvm}}, \code{\link{gensvm.grid}}, +#' \code{\link{predict.gensvm.grid}}, \code{\link{gensvm-package}} +#' +#' @export +#' #' @examples #' x <- iris[, -5] #' y <- iris[, 5] diff --git a/R/predict.gensvm.R b/R/predict.gensvm.R index 7e04fe4..d7540f6 100644 --- a/R/predict.gensvm.R +++ b/R/predict.gensvm.R @@ -11,9 +11,6 @@ #' @return a vector of class labels, with the same type as the original class #' labels. #' -#' @export -#' @aliases predict -#' #' @author #' Gerrit J.J. van den Burg, Patrick J.F. Groenen \cr #' Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> @@ -23,6 +20,13 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{plot.gensvm}}, \code{\link{predict.gensvm.grid}}, +#' \code{\link{gensvm}}, \code{\link{gensvm-package}} +#' +#' @export +#' @aliases predict +#' #' @examples #' x <- iris[, -5] #' y <- iris[, 5] diff --git a/R/predict.gensvm.grid.R b/R/predict.gensvm.grid.R index 81a0207..7555368 100644 --- a/R/predict.gensvm.grid.R +++ b/R/predict.gensvm.grid.R @@ -15,8 +15,6 @@ #' @return a vector of class labels, with the same type as the original class #' labels provided to gensvm.grid() #' -#' @export -#' #' @author #' Gerrit J.J. van den Burg, Patrick J.F. Groenen \cr #' Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com> @@ -26,6 +24,12 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{gensvm}}, \code{\link{predict.gensvm.grid}}, +#' \code{\link{plot.gensvm}}, \code{\link{gensvm-package}} +#' +#' @export +#' #' @examples #' x <- iris[, -5] #' y <- iris[, 5] diff --git a/R/print.gensvm.R b/R/print.gensvm.R index 119b264..724806b 100644 --- a/R/print.gensvm.R +++ b/R/print.gensvm.R @@ -17,6 +17,10 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{gensvm}}, \code{\link{predict.gensvm}}, +#' \code{\link{plot.gensvm}}, \code{\link{gensvm-package}} +#' #' @method print gensvm #' @export #' diff --git a/R/print.gensvm.grid.R b/R/print.gensvm.grid.R index 88967d7..558dbd8 100644 --- a/R/print.gensvm.grid.R +++ b/R/print.gensvm.grid.R @@ -16,6 +16,11 @@ #' Multiclass Support Vector Machine}, Journal of Machine Learning Research, #' 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. #' +#' @seealso +#' \code{\link{gensvm.grid}}, \code{\link{predict.gensvm.grid}}, +#' \code{\link{plot.gensvm.grid}}, \code{\link{gensvm.grid}}, +#' \code{\link{gensvm-package}} +#' #' @method print gensvm.grid #' @export #' diff --git a/man/coef.gensvm.Rd b/man/coef.gensvm.Rd index 73d7a9a..cb6910b 100644 --- a/man/coef.gensvm.Rd +++ b/man/coef.gensvm.Rd @@ -39,4 +39,8 @@ 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}. } +\seealso{ +\code{\link{gensvm}}, \code{\link{plot.gensvm}}, +\code{\link{predict.gensvm}}, \code{\link{gensvm-package}} +} diff --git a/man/coef.gensvm.grid.Rd b/man/coef.gensvm.grid.Rd index b8f8a40..5e84db1 100644 --- a/man/coef.gensvm.grid.Rd +++ b/man/coef.gensvm.grid.Rd @@ -34,4 +34,7 @@ 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}. } +\seealso{ +\code{\link{gensvm.grid}}, \code{\link{gensvm-package}} +} diff --git a/man/gensvm-package.Rd b/man/gensvm-package.Rd index 56e28ac..7c4e2a5 100644 --- a/man/gensvm-package.Rd +++ b/man/gensvm-package.Rd @@ -108,4 +108,7 @@ 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}. } +\seealso{ +\code{\link{gensvm}}, \code{\link{gensvm.grid}} +} diff --git a/man/gensvm.Rd b/man/gensvm.Rd index 1db0558..7a55bd6 100644 --- a/man/gensvm.Rd +++ b/man/gensvm.Rd @@ -131,6 +131,6 @@ Multiclass Support Vector Machine}, Journal of Machine Learning Research, } \seealso{ \code{\link{coef}}, \code{\link{print}}, \code{\link{predict}}, -\code{\link{plot}}, and \code{\link{gensvm.grid}}. +\code{\link{plot}}, \code{\link{gensvm.grid}}, \code{\link{gensvm-package}} } diff --git a/man/gensvm.accuracy.Rd b/man/gensvm.accuracy.Rd index 60a0f89..7d07167 100644 --- a/man/gensvm.accuracy.Rd +++ b/man/gensvm.accuracy.Rd @@ -29,6 +29,7 @@ Multiclass Support Vector Machine}, Journal of Machine Learning Research, 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. } \seealso{ -\code{\link{predict.gensvm.grid}} +\code{\link{predict.gensvm.grid}}, \code{\link{predict.gensvm}}, +\code{\link{gensvm-package}} } diff --git a/man/gensvm.grid.Rd b/man/gensvm.grid.Rd index 6dbec22..282c641 100644 --- a/man/gensvm.grid.Rd +++ b/man/gensvm.grid.Rd @@ -155,7 +155,8 @@ Multiclass Support Vector Machine}, Journal of Machine Learning Research, 17(225):1--42. URL \url{http://jmlr.org/papers/v17/14-526.html}. } \seealso{ -\code{\link{predict.gensvm.grid}}, \code{\link{print.gensvm.grid}}, and -\code{\link{gensvm}}. +\code{\link{predict.gensvm.grid}}, \code{\link{print.gensvm.grid}}, +\code{\link{plot.gensvm.grid}}, \code{\link{gensvm}}, +\code{\link{gensvm-package}} } diff --git a/man/gensvm.maxabs.scale.Rd b/man/gensvm.maxabs.scale.Rd index 0bb09ba..7b96a37 100644 --- a/man/gensvm.maxabs.scale.Rd +++ b/man/gensvm.maxabs.scale.Rd @@ -60,4 +60,8 @@ 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}. } +\seealso{ +\code{\link{gensvm}}, \code{\link{gensvm.grid}}, +\code{\link{gensvm.train.test.split}}, \code{\link{gensvm-package}} +} diff --git a/man/gensvm.refit.Rd b/man/gensvm.refit.Rd index 18803af..d57189f 100644 --- a/man/gensvm.refit.Rd +++ b/man/gensvm.refit.Rd @@ -54,4 +54,7 @@ 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}. } +\seealso{ +\code{\link{gensvm}}, \code{\link{gensvm-package}} +} diff --git a/man/gensvm.train.test.split.Rd b/man/gensvm.train.test.split.Rd index a99940f..6d23964 100644 --- a/man/gensvm.train.test.split.Rd +++ b/man/gensvm.train.test.split.Rd @@ -59,4 +59,7 @@ 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}. } +\seealso{ +\code{\link{gensvm}}, \code{\link{gensvm-package}} +} diff --git a/man/plot.gensvm.Rd b/man/plot.gensvm.Rd index 243f687..50870c0 100644 --- a/man/plot.gensvm.Rd +++ b/man/plot.gensvm.Rd @@ -73,4 +73,8 @@ 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}. } +\seealso{ +\code{\link{plot.gensvm.grid}}, \code{\link{predict.gensvm}}, +\code{\link{gensvm}}, \code{\link{gensvm-package}} +} diff --git a/man/plot.gensvm.grid.Rd b/man/plot.gensvm.grid.Rd index d54196f..0db01ec 100644 --- a/man/plot.gensvm.grid.Rd +++ b/man/plot.gensvm.grid.Rd @@ -38,4 +38,8 @@ 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}. } +\seealso{ +\code{\link{plot.gensvm}}, \code{\link{gensvm.grid}}, +\code{\link{predict.gensvm.grid}}, \code{\link{gensvm-package}} +} diff --git a/man/predict.gensvm.Rd b/man/predict.gensvm.Rd index 0c55a43..2881e26 100644 --- a/man/predict.gensvm.Rd +++ b/man/predict.gensvm.Rd @@ -47,4 +47,8 @@ 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}. } +\seealso{ +\code{\link{plot.gensvm}}, \code{\link{predict.gensvm.grid}}, +\code{\link{gensvm}}, \code{\link{gensvm-package}} +} diff --git a/man/predict.gensvm.grid.Rd b/man/predict.gensvm.grid.Rd index d4cbd68..194700e 100644 --- a/man/predict.gensvm.grid.Rd +++ b/man/predict.gensvm.grid.Rd @@ -46,4 +46,8 @@ 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}. } +\seealso{ +\code{\link{gensvm}}, \code{\link{predict.gensvm.grid}}, +\code{\link{plot.gensvm}}, \code{\link{gensvm-package}} +} diff --git a/man/print.gensvm.Rd b/man/print.gensvm.Rd index 75a44b2..f85db96 100644 --- a/man/print.gensvm.Rd +++ b/man/print.gensvm.Rd @@ -40,4 +40,8 @@ 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}. } +\seealso{ +\code{\link{gensvm}}, \code{\link{predict.gensvm}}, +\code{\link{plot.gensvm}}, \code{\link{gensvm-package}} +} diff --git a/man/print.gensvm.grid.Rd b/man/print.gensvm.grid.Rd index 8a65370..cf4c257 100644 --- a/man/print.gensvm.grid.Rd +++ b/man/print.gensvm.grid.Rd @@ -35,4 +35,9 @@ 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}. } +\seealso{ +\code{\link{gensvm.grid}}, \code{\link{predict.gensvm.grid}}, +\code{\link{plot.gensvm.grid}}, \code{\link{gensvm.grid}}, +\code{\link{gensvm-package}} +} |
