diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2018-03-27 20:01:24 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2018-03-27 20:01:24 +0100 |
| commit | 9207c460b56f176fa08f610276f80a4150331243 (patch) | |
| tree | 1037c554b8ddf6c69930e2c3bcb8206c4a0104d6 /man | |
| parent | update submodule (diff) | |
| download | rgensvm-9207c460b56f176fa08f610276f80a4150331243.tar.gz rgensvm-9207c460b56f176fa08f610276f80a4150331243.zip | |
allow user to override plot limits
Diffstat (limited to 'man')
| -rw-r--r-- | man/plot.gensvm.Rd | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/man/plot.gensvm.Rd b/man/plot.gensvm.Rd index e28a108..243f687 100644 --- a/man/plot.gensvm.Rd +++ b/man/plot.gensvm.Rd @@ -5,7 +5,8 @@ \title{Plot the simplex space of the fitted GenSVM model} \usage{ \method{plot}{gensvm}(fit, x, y.true = NULL, with.margins = TRUE, - with.shading = TRUE, with.legend = TRUE, center.plot = TRUE, ...) + with.shading = TRUE, with.legend = TRUE, center.plot = TRUE, + xlim = NULL, ylim = NULL, ...) } \arguments{ \item{fit}{A fitted \code{gensvm} object} @@ -25,6 +26,13 @@ identify misclassified objects.} \item{center.plot}{ensure that the boundaries and margins are always visible in the plot} +\item{xlim}{allows the user to force certain plot limits. If set, these +bounds will be used for the horizontal axis.} + +\item{ylim}{allows the user to force certain plot limits. If set, these +bounds will be used for the vertical axis and the value of center.plot will +be ignored} + \item{...}{further arguments are ignored} } \value{ |
