def iris_h1(x="sepal_length"):
"""One-dimensional histogram of classical iris data.
Parameters
----------
x : str
Name of the property to be histogrammed
(sepal_length, sepal_width, petal_length, petal_width)
"""
iris = load_dataset("iris")
return h1(iris[x], "human", 20, name="iris")
评论列表
文章目录