Matplotlib - Seaborn Integration
Identify the error in the code below that tries to change the figure size of a Seaborn plot:
import seaborn as sns import matplotlib.pyplot as plt sns_plot = sns.barplot(x=[1,2,3], y=[4,5,6]) sns_plot.figure(figsize=(10,5)) plt.show()
