From f4e1f14cf71b181161aecbc33a3f58e9e4cb4753 Mon Sep 17 00:00:00 2001
From: Fabian Pedregosa <fabian.pedregosa@inria.fr>
Date: Tue, 19 Oct 2010 15:07:33 +0200
Subject: [PATCH] More accurate info in examples.

---
 examples/svm/plot_iris.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/svm/plot_iris.py b/examples/svm/plot_iris.py
index d736ea267d..734c08367b 100644
--- a/examples/svm/plot_iris.py
+++ b/examples/svm/plot_iris.py
@@ -4,7 +4,7 @@ Plot different SVM classifiers in the iris dataset
 ==================================================
 
 Comparison of different linear SVM classifiers on the iris dataset. It
-will plot the decision surface and the support vectors.
+will plot the decision surface for four different SVM classifiers.
 
 """
 
@@ -58,6 +58,6 @@ for i, clf in enumerate((svc, rbf_svc, nu_svc, lin_svc)):
     pl.scatter(X[:,0], X[:,1], c=Y)
 
     pl.title(titles[i])
-    
+
 pl.axis('tight')
 pl.show()
-- 
GitLab