17

我正在尝试使用 seaborn JointGrid 对象使用与每个轴关联的 KDE 和直方图创建对数图。这让我非常接近,但直方图箱不能很好地转化为日志空间。有没有一种方法可以轻松地做到这一点而不必重新创建边缘轴?

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')

绘图的输出

4

1 回答 1

20

对于日志直方图,我发现使用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')

在此处输入图像描述

于 2015-03-19T12:43:22.143 回答