如何使用 Seaborn 在同一个图表上绘制两个小提琴图系列?
要使用 Seaborn 在同一图表上绘制两个小提琴图系列,我们可以执行以下步骤。
步骤
设置图形大小并调整子图之间和周围的边距。
从在线存储库加载示例数据集(需要互联网)。
使用 violinplot() 方法创建一个小提琴图。
要显示图形,请使用 Show() 方法。
示例
# Import Seaborn and Matplotlib import seaborn as sns from matplotlib import pyplot as plt # Set the figure size plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True # Load an example dataset tips = sns.load_dataset("tips") # Create a violin plot using Seaborn sns.violinplot(x="day", y="total_bill", hue="time", data=tips) # Display the plot plt.show()
输出
将生成以下输出 −
广告