log-log plot with seaborn jointgrid

时间:2014-09-26 12:48:08

标签: matplotlib seaborn loglog

我正在尝试使用seaborn JointGrid对象创建一个带有KDE和与每个轴相关联的直方图的loglog图。这让我非常接近,但直方图箱不能很好地转换为logspace。有没有办法在不重新创建边缘轴的情况下轻松完成这项工作?

import seaborn as sns
import matplotlib.pyplot as plt
import numpy as np

data = sns.load_dataset('tips')
g = sns.JointGrid('total_bill', 'tip', data)
g.plot_marginals(sns.distplot, hist=True, kde=True, color='blue')
g.plot_joint(plt.scatter, color='black', edgecolor='black')
ax = g.ax_joint
ax.set_xscale('log')
ax.set_yscale('log')
g.ax_marg_x.set_xscale('log')
g.ax_marg_y.set_yscale('log')

Output of plot

1 个答案:

答案 0 :(得分:14)

对于日志直方图,我发现通常可以使用np.logspace()设置自己的箱子。

mybins=np.logspace(0,np.log(100),100)

然后在bins=

中设置_marginals
data = sns.load_dataset('tips')
g = sns.JointGrid('total_bill', 'tip', data,xlim=[1,100],ylim=[0.01,100])
g.plot_marginals(sns.distplot, hist=True, kde=True, color='blue',bins=mybins)
g.plot_joint(plt.scatter, color='black', edgecolor='black')
ax = g.ax_joint
ax.set_xscale('log')
ax.set_yscale('log')
g.ax_marg_x.set_xscale('log')
g.ax_marg_y.set_yscale('log')

enter image description here