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