Matplotlib - Seaborn Integration
What is the output of the following code?
import seaborn as sns import matplotlib.pyplot as plt data = [5, 7, 8, 5, 6, 9, 4] sns.violinplot(data=data) plt.show()
