import matplotlib.pyplot as pltdf["species"].value_counts().plot(kind="bar")plt.show()import seaborn as snsimport matplotlib.pyplot as pltax = sns.countplot(x='species', data=df)plt.show()import matplotlib.pyplot as pltdf.hist()plt.show()import seaborn as snsimport matplotlib.pyplot as pltsns.distplot(df['sepal_length'], kde=True)plt.show()sns.distplot(df['sepal_width'], kde=True)plt.show()sns.distplot(df['petal_length'], kde=True)plt.show()sns.distplot(df['petal_width'], kde=True)plt.show()