Correct the order

Report a typo

You want to plot sepal_length and sepal_width from the iris dataset on a scatterplot. The things you need to do are listed below, but what's the correct order?

Put the items in the correct order
data = sb.load_dataset('iris')
plot.set(title='Sepal length and width of irises')
plot = sb.scatterplot(x='sepal_length', y='sepal_width', data=data)
import seaborn as sb
___

Create a free account to access the full topic