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