def iris_h2(x="sepal_length", y="sepal_width"):
"""Two-dimensional histogram of classical iris data.
Parameters
----------
x, y : str
Names of the properties to be histogrammed
(sepal_length, sepal_width, petal_length, petal_width)
"""
iris = load_dataset("iris")
return h2(iris[x], iris[y], "human", 20, name="iris")
评论列表
文章目录