SVM Plot

In [102]:
from verticapy.learn.svm import LinearSVC
model = LinearSVC(name = "public.SVC_iris")
model.fit("public.iris_clean", 
          ["PetalLengthCm", "PetalWidthCm"], 
          "Species_Iris-setosa")
model.plot()
Out[102]:
<AxesSubplot:xlabel='"PetalLengthCm"', ylabel='"PetalWidthCm"'>