Matplotlib - Seaborn Integration
What will the following code display?
import matplotlib.pyplot as plt
plt.boxplot([1, 2, 3, 4, 5, 6, 7, 8, 9])
plt.title('Boxplot Example')
plt.show()