Matplotlib - Seaborn Integration
What will this code display?
import seaborn as sns
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
sns.barplot(x=['A','B'], y=[10, 20], ax=ax)
ax.set_xlabel('Category')
ax.set_ylabel('Value')
plt.show()