Bubble Plot

In [25]:
%matplotlib inline
from verticapy.datasets import load_iris
iris = load_iris()
iris.bubble(["PetalLengthCm", "SepalLengthCm"],
            size_bubble_col = "SepalWidthCm",
            catcol = "Species",
            color = ["#0073E7", "#263133", "#FE5016"],)
Out[25]:
<AxesSubplot:xlabel='"PetalLengthCm"', ylabel='"SepalLengthCm"'>