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

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

使用seaborn繪制熱圖時(shí),可以將多行標(biāo)記為一個(gè)標(biāo)簽嗎?

使用seaborn繪制熱圖時(shí),可以將多行標(biāo)記為一個(gè)標(biāo)簽嗎?

慕斯709654 2023-08-22 10:28:19
我正在繪制熱圖。我想用它的類別替換原來(lái)的 y 軸。例如:數(shù)據(jù):                    Location 1    Location 2      Location 3cluster 1:    0       0.3           0.5              0.7cluster 1:    1       1.2           3.1              1.2cluster 1:    2       0.8           0.1              1.3cluster 2:    3       0.2           0.3              1.0cluster 2:    4       3.1           2.1              5cluster 3:    5       0.9           0.7              0.2我不想顯示索引(0,1,2,3,4,5),而是想顯示多行的簇號(hào)。我怎樣才能做到這一點(diǎn)?
查看完整描述

1 回答

?
SMILET

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

您可以循環(huán)瀏覽標(biāo)簽并將它們放置在平均值處。小 y 刻度線可以用作分隔符。


以下代碼假設(shè)第一列具有集群標(biāo)簽(并且不會(huì)用于熱圖本身)。


import pandas as pd

import seaborn as sns

from io import StringIO

import matplotlib.pyplot as plt

from matplotlib.ticker import FixedLocator


data_str = '''    cluster                "Location 1"    "Location 2"      "Location 3"

"cluster 1"         0.3           0.5              0.7

"cluster 1"         1.2           3.1              1.2

"cluster 1"         0.8           0.1              1.3

"cluster 2"         0.2           0.3              1.0

"cluster 2"         3.1           2.1              5

"cluster 3"         0.9           0.7              0.2'''


df = pd.read_csv(StringIO(data_str), delim_whitespace=True)

ax = sns.heatmap(df[df.columns[1:]], cmap='rocket_r', annot=True)


ax.xaxis.tick_top()

ticks = []

labels = []

prev_label = None

for i, label in enumerate(df['cluster']):

    if label != prev_label:

        ticks.append(i)

        labels.append(label)

        prev_label = label

ticks.append(i + 1)

ax.yaxis.set_minor_locator(FixedLocator(ticks))

ax.yaxis.set_major_locator(FixedLocator([(t0 + t1) / 2 for t0, t1 in zip(ticks[:-1], ticks[1:])]))

ax.set_yticklabels(labels, rotation=0)

ax.tick_params(axis='both', which='major', length=0)

ax.tick_params(axis='y', which='minor', length=60)

plt.tight_layout()

plt.show()

https://img1.sycdn.imooc.com//64e41d700001e1db06090386.jpg

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

添加回答

舉報(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)