Matplotlib - Seaborn Integration
What will be the effect of the following code on a Seaborn plot?
import seaborn as sns
import matplotlib.pyplot as plt
sns_plot = sns.scatterplot(x=[1,2,3], y=[4,5,6])
plt.xlabel('X Axis')
plt.ylabel('Y Axis')
plt.grid(True)
plt.show()