diff options
| author | Gertjan van den Burg <gvandenburg@turing.ac.uk> | 2018-04-19 11:00:03 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gvandenburg@turing.ac.uk> | 2018-04-19 11:00:03 +0100 |
| commit | 12bea08629615634cf910cd3b8754b16108c76b1 (patch) | |
| tree | 4f4b5a39b4e2e1b004d539d6cebb06bee5ce93ef | |
| parent | update cran-comments for resubmission (diff) | |
| download | rgensvm-12bea08629615634cf910cd3b8754b16108c76b1.tar.gz rgensvm-12bea08629615634cf910cd3b8754b16108c76b1.zip | |
update example in readme with correct plot() syntax
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)") ``` |
