Matplotlib - Seaborn Integration
Identify the error in this code that customizes a Seaborn boxplot:
import seaborn as sns
import matplotlib.pyplot as plt
sns.boxplot(data=sns.load_dataset('iris'), x='species', y='sepal_length')
plt.title = 'Sepal Length by Species'
plt.show()