# Creating a scatter plot of sepal_length vs sepal_width using Matplotlib
import matplotlib.pyplot as plt
ax = plt.axes()
ax.scatter(data.sepal_length, data.sepal_width)
# Label the axes
ax.set(xlabel='Sepal Length (cm)',
ylabel='Sepal Width (cm)',
title='Sepal Length vs Width');
plt.show()
import matplotlib.pyplot as plt
data.plot(x="sepal_length", y="sepal_width", kind="scatter")
plt.title("Sepal Length vs Width")
plt.xlabel("Sepal Length (cm)")
plt.ylabel("Sepal Width (cm)")
plt.show()