#title Python - Histogram {{{ #histogram #방법1 iris_df["sepal width (cm)"].plot.hist() #방법2 sepal_width = iris_df["sepal width (cm)"] sepal_width.plot.hist() }}}