Seaborn:如何添加任意行/文本框来澄清图表?

时间:2016-11-09 19:27:08

标签: python matplotlib seaborn

假设下面的Seaborn MWE(code credits this post)。这产生了下面的图片(红色部分)。

如何添加任意框架文本框和花哨(箭头)线以澄清情节,例如下面屏幕截图中的红色部分?

如何添加红色部分?

enter image description here

MWE:

import seaborn as sns
import matplotlib.pyplot as plt
iris = sns.load_dataset("iris")
grid = sns.JointGrid(iris.petal_length, iris.petal_width, space=0, size=6, ratio=50)
grid.plot_joint(plt.scatter, color="g")
grid.ax_joint.plot([0,4], [1.5,0], 'b-', linewidth = 2)
grid.savefig("test.png")

0 个答案:

没有答案