用于海洋因子图的线型和x_jitter

时间:2015-07-28 18:43:44

标签: matplotlib seaborn

Seaborn因子图非常棒,但我如何影响线条样式(例如,虚线等以获得更好的黑白可读性)。我如何应用“x_jitter”,以便不同的置信区间不相互遮挡? 谢谢!

以下是未应用这些更改的示例。

>>> import seaborn as sns
>>> sns.set(style="ticks")
>>> exercise = sns.load_dataset("exercise")
>>> g = sns.factorplot(x="time", y="pulse", hue="kind", data=exercise)

1 个答案:

答案 0 :(得分:1)

简要说明,以确保包含完整的解决方案,而不仅仅是链接。

sns.factorplot将其他参数转发给基础绘图函数。在您的示例中,sns.pointplot用于绘制数据,您可以将参数linewidthsdodge传递给此函数:

sns.factorplot(x="time", y="pulse", hue="kind", data=exercise, dodge=0.2, linestyles='dashed')

enter image description here