seaborn将所有变量标签保持在X刻度上

时间:2019-02-01 01:32:42

标签: python graph label seaborn

我正在尝试绘制一些配电箱。

我上传了数据集,并使用isin方法选择了一些国家/地区。

当我在下面运行seaborn boxplot命令时,我只有原始数据集的150个国家,而不是只有6个国家。

我怎么只保留我的6个国家的利益?

ersa = pd.read_excel(data)

country = ['Bangladesh', 'China', 'Viet Nam', 'India', 'Cambodia', 'Malaysia']
ersa_source = ersa[ersa['Country'].isin(country)]

fig, ax = plt.subplots()
fig.set_size_inches(11, 11.27)
sns.set_style('white')
pal = sns.color_palette('Paired')
b = sns.boxplot(x='Country', y='Weekly hours (average)',
            data= ersa_source, width=0.5, palette= pal)
b =sns.stripplot(x='Country', y='Weekly hours (average)', 
                   data = ersa_source, 
                   jitter=True, 
                   linewidth = 1, 
                   alpha=0.6,  dodge=True,
                   palette = pal)
b= sns.despine(offset=10, trim=True)
ax.set_title('Title', fontsize = 20)
ax.set_xlabel('Country', fontsize = 15)
ax.set_ylabel("Y", fontsize = 15)

enter image description here

0 个答案:

没有答案