Гринлет против Потоки

Вы можете использовать JointGrid напрямую:

from scipy import stats

g = sns.JointGrid(x, y, ratio=100)
g.plot_joint(sns.regplot)
g.annotate(stats.pearsonr)
g.ax_marg_x.set_axis_off()
g.ax_marg_y.set_axis_off()

enter image description here [/g0]

128
задан Robert Siemer 12 March 2015 в 10:54
поделиться