In the following example: http://scikit-learn.org/stable/auto_examples/svm/plot_separating_hyperplane.html
I would like to obtain the coefficients of the (line) decision boundary shown in the picture. A call to
clf.coef_
returns
[[-0.2539717 -0.83806387]]
which, if I am not mistaken, represents the line of equation
y = -0.83806387 * x - 0.2539717
However, the above line is not the decision boundary obtained in the example, so what exactly is coef_ and how can I obtain the equation of the linear decision boundary ?