Logit Plot

In [109]:
from verticapy.learn.linear_model import LogisticRegression
model = LogisticRegression(name = "public.Logit_iris")
model.fit("public.iris_clean", 
          ["PetalLengthCm",], 
          "Species_Iris-setosa")
model.plot()
Out[109]:
<AxesSubplot:xlabel='"PetalLengthCm"', ylabel='"Species_Iris-setosa"'>