Matplotlib - Seaborn Integration
What will be the visual effect of the following code on a Seaborn scatter plot?
import seaborn as sns
import matplotlib.pyplot as plt
iris = sns.load_dataset('iris')
sns.scatterplot(data=iris, x='sepal_length', y='sepal_width')
plt.xticks(rotation=45)
plt.show()