From 12bea08629615634cf910cd3b8754b16108c76b1 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 19 Apr 2018 11:00:03 +0100 Subject: update example in readme with correct plot() syntax --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)") ``` -- cgit v1.2.3