Matplotlib - Seaborn Integration
Identify the error in this code snippet:
import seaborn as sns import matplotlib.pyplot as plt data = [1, 2, 3, 4, 5] sns.barplot(data) plt.show()
