8

所以我有这个可能很简单的问题。我使用 seaborn 从 excel 文件中的数据创建了一个直方图。为了更好的可视化,我想在条/箱之间留一些空间。那可能吗?

我的代码如下所示

import pandas as pd
import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np
import seaborn as sns

%matplotlib inline
from IPython.display import set_matplotlib_formats
set_matplotlib_formats('svg', 'pdf')


df = pd.read_excel('test.xlsx')
sns.set_style("white")
#sns.set_style("dark")
plt.figure(figsize=(12,10))
plt.xlabel('a', fontsize=18)
plt.ylabel('test2', fontsize=18)

plt.title ('tests ^2', fontsize=22)


ax = sns.distplot(st,bins=34, kde=False, hist_kws={'range':(0,1), 'edgecolor':'black', 'alpha':1.0}, axlabel='test1')

第二个问题虽然有点离题,但我如何让图表标题中的指数真正被提升?

谢谢!

4

3 回答 3

16

matplotlibhist函数有一个参数rwidth

rwidth:标量或无,可选
条的相对宽度,作为箱宽度的一部分。

您可以在distplotviahist_kws参数中使用它。

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

x = np.random.normal(0.5,0.2,1600)

ax = sns.distplot(x,bins=34, kde=False, 
                  hist_kws={"rwidth":0.75,'edgecolor':'black', 'alpha':1.0})

plt.show()

hist_kws

于 2017-11-06T21:26:25.280 回答
5

对于 Seaborn >= 0.11,使用shrink参数。它通过此参数相对于 binwidth 缩放每个条的宽度。其余的将是空的空间。

文档:https ://seaborn.pydata.org/generated/seaborn.histplot.html

编辑: OP 最初是在询问sns.distplot(),但是,它已被弃用,赞成sns.histplotsns.displot()在当前版本>=0.11中。由于 OP 正在生成直方图,因此histplotdisplothist模式下都将采用shrink

于 2021-01-26T14:01:20.110 回答
0

发布我的答案后,我意识到我的回答与被问到的相反。我在试图弄清楚如何删除条之间的空间时发现了这个问题。我几乎删除了我的答案,但万一其他人偶然发现了这个问题并试图删除 seaborn 的 histplot 中的条之间的空间,我将暂时保留它。

感谢 @miro 提供 Seaborn 的更新文档,我发现这element='step'对我有用。取决于你想要什么,element='poly'可能就是你所追求的。

我的“步骤”实现:

fig,axs = plt.subplots(4,2,figsize=(10,10))
i,j = 0,0
for col in cols:
    sns.histplot(df[col],ax=axs[i,j],bins=100,element='step')
    axs[i,j].set(title="",ylabel='Frequency',xlabel=labels[col])
    i+=1
    if i == 4: 
        i = 0
        j+=1

在此处输入图像描述

我的“poly”实现:

fig,axs = plt.subplots(4,2,figsize=(10,10))
i,j = 0,0
for col in cols:
    sns.histplot(df[col],ax=axs[i,j],bins=100,element='poly')
    axs[i,j].set(title="",ylabel='Frequency',xlabel=labels[col])
    i+=1
    if i == 4: 
        i = 0
        j+=1

在此处输入图像描述

于 2021-05-27T20:22:30.973 回答