aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gvandenburg@turing.ac.uk>2018-04-19 11:00:03 +0100
committerGertjan van den Burg <gvandenburg@turing.ac.uk>2018-04-19 11:00:03 +0100
commit12bea08629615634cf910cd3b8754b16108c76b1 (patch)
tree4f4b5a39b4e2e1b004d539d6cebb06bee5ce93ef
parentupdate cran-comments for resubmission (diff)
downloadrgensvm-12bea08629615634cf910cd3b8754b16108c76b1.tar.gz
rgensvm-12bea08629615634cf910cd3b8754b16108c76b1.zip
update example in readme with correct plot() syntax
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 814232f..89d991a 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ classifier in R.
> x <- iris[, -5]
> y <- iris[, 5]
> fit <- gensvm(x, y, kernel='rbf', gamma=10, max.iter=5000, verbose=1, random.seed=123)
-> plot(fit, x, y, xlim=c(-5, 5), ylim=c(-5, 5))
+> plot(fit, xlim=c(-5, 5), ylim=c(-5, 5))
> title("Iris dataset (GenSVM + RBF)")
```