第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

sns.catplot,縮小條形之間的差距

sns.catplot,縮小條形之間的差距

偶然的你 2022-10-18 16:30:15
這是我運(yùn)行此代碼時(shí)得到的情節(jié)有什么辦法可以減少這兩個(gè)條之間的間隙但不能完全相互接觸?sns.catplot(x = "case", kind = "count", data = df, alpha=0.8, palette = my_pal, hue="class")plt.ylabel("Count", size=12)plt.tight_layout()
查看完整描述

1 回答

?
揚(yáng)帆大魚

TA貢獻(xiàn)1799條經(jīng)驗(yàn) 獲得超9個(gè)贊

問(wèn)題似乎是“case”和“class”列包含相同的信息,只是名稱不同。在 case 為 1 的任何地方,class 都是 Negative,反之亦然。

如果您同時(shí)使用xand hue,seaborn 將放置 4 列:

  • 案例 1,“負(fù)面”類

  • 案例 1,“綠色”類

  • 案例 2,“負(fù)面”類

  • 案例 2,“綠色”類

四列中的兩列保持空白:

import seaborn as sns

import matplotlib.pyplot as plt

import numpy as np

import pandas as pd


df = pd.DataFrame({'case': np.concatenate([np.repeat([1], 3700), np.repeat([2], 1200)]),

                   'class': np.concatenate([np.repeat(['Negative'], 3700), np.repeat(['green'], 1200)])})


g = sns.catplot(x="case",

                hue='class',

                palette='Blues',

                data=df,

                kind="count")

plt.show()

http://img1.sycdn.imooc.com//634e644e00016a6e06330282.jpg

在這種情況下,更合適的情節(jié)是省略hue并直接使用該類x:


g = sns.catplot(x='class',

                palette='Blues',

                data=df,

                kind='count')

plt.show()

http://img1.sycdn.imooc.com//634e645b00012d3304690210.jpg

PS:要獲得與第一個(gè)情節(jié)相似的圖例,可以使用 xticks 和 xlabel。請(qǐng)注意,seaborncatplot旨在創(chuàng)建完整的子圖網(wǎng)格。g.axes[0][0]抓取ax第一個(gè)子圖的。


plt.legend(g.axes[0][0].patches,

           [l.get_text() for l in g.axes[0][0].get_xticklabels()],

           title= g.axes[0][0].get_xlabel())

g.axes[0][0].set_xticks([])  # remove the xticks (now in legend)

g.axes[0][0].set_xlabel('')  # remove the xlabel (now title of legend)


查看完整回答
反對(duì) 回復(fù) 2022-10-18
  • 1 回答
  • 0 關(guān)注
  • 119 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)