Matplotlib - Seaborn Integration
What will be displayed when running the following code?
import seaborn as sns
import matplotlib.pyplot as plt
sns.lineplot(x=[0,1,2], y=[3,2,1])
plt.ylabel('Values')
plt.show()