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

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

Plotly:如何向直方圖添加文本標(biāo)簽?

Plotly:如何向直方圖添加文本標(biāo)簽?

楊__羊羊 2023-08-15 18:52:52
有沒有辦法在 Plotly.Express 直方圖中顯示直方圖聚合的計(jì)數(shù)值?px.histogram(pd.DataFrame({"A":[1,1,1,2,2,3,3,3,4,4,4,5]}),x="A")如果我使用常規(guī)直方圖,我可以指定text直接指向包含要顯示的值的列的參數(shù)。px.bar(pd.DataFrame({"val":[1,2,3,4,5], "height": [3,2,3,3,1]}), x="val", y="height", text="height")但對(duì)于直方圖,該值是計(jì)算出來(lái)的,它甚至不是fig.to_dict(). 有沒有辦法將文本標(biāo)簽添加到直方圖中?使用下面的答案,我將這一發(fā)現(xiàn)總結(jié)為一篇文章 - https://towardsdatascience.com/histograms-with-plotly-express-complete-guide-d483656c5ad7
查看完整描述

3 回答

?
阿晨1998

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

text_auto設(shè)置為的參數(shù)將True執(zhí)行您想要的操作。

以您的示例代碼為例,這就是我得到的:

fig?=?px.histogram(pd.DataFrame({"A":[1,1,1,2,2,3,3,3,4,4,4,5]}),x="A",?
text_auto=True)
fig.show()


查看完整回答
反對(duì) 回復(fù) 2023-08-15
?
白板的微信

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

據(jù)我所知,繪圖直方圖沒有文本屬性。事實(shí)證明,如果可能的話,檢索應(yīng)用的 x 和 y 值并將它們放入適當(dāng)?shù)淖⑨屩幸彩呛軓?fù)雜的。您最好的選擇似乎是使用numpy.histogram處理分箱并使用go.Bar.?下面的代碼片段將產(chǎn)生以下圖:


https://img2.sycdn.imooc.com/64db595500017e1f05800366.jpg

完整代碼:

import numpy as np

import plotly.express as px

import plotly.graph_objects as go


# sample data

df = px.data.tips()


# create bins

bins = [0, 10, 20, 30, 40, 50]

counts, bins = np.histogram(df.total_bill, bins=bins)

#bins2 = 0.5 * (bins1[:-1] + bins2[1:])


fig = go.Figure(go.Bar(x=bins, y=counts))

fig.data[0].text = counts

fig.update_traces(textposition='inside', textfont_size=8)

fig.update_layout(bargap=0)



fig.update_traces(marker_color='blue', marker_line_color='blue',

? ? ? ? ? ? ? ? ? marker_line_width=1, opacity=0.4)


fig.show()


查看完整回答
反對(duì) 回復(fù) 2023-08-15
?
MM們

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

今天早上我在嘗試?yán)L制 TDD 百分比直方圖時(shí)遇到了同樣的問題。我想使用plotly 進(jìn)行標(biāo)準(zhǔn)化(histnorm:“百分比”),這樣我就可以看到每月 TDD 值的百分比而不是計(jì)數(shù)。我通過簡(jiǎn)單地執(zhí)行print(tdd_hist)找到了這個(gè)解決方案


首先,我將直方圖打印到控制臺(tái)并看到這個(gè)輸出......


Figure({

'data': [{'alignmentgroup': 'True',

          'bingroup': 'x',

          'histnorm': 'percent',

          'hovertemplate': 'Total Demand Distortion TDD %=%{x}<br>count=%{y}<extra></extra>',

          'legendgroup': '',

          'marker': {'color': '#636efa'},

          'name': '',

          'offsetgroup': '',

          'orientation': 'v',

          'showlegend': False,

          'type': 'histogram',

          'x': array([0.67, 0.68, 0.68, ..., 2.41, 2.48, 2.01]),

          'xaxis': 'x',

          'yaxis': 'y'}],

'layout': {'barmode': 'relative',

           'legend': {'tracegroupgap': 0},

           'template': '...',

           'title': {'text': 'Percent Histogram of TDD%'},

           'xaxis': {'anchor': 'y', 'domain': [0.0, 1.0], 'title': {'text': 'Total Demand Distortion TDD %'}},

           'yaxis': {'anchor': 'x', 'domain': [0.0, 1.0], 'title': {'text': 'count'}, 'type': 'log'}}

現(xiàn)在我可以清楚地看到,為了改變這一點(diǎn),我做了一個(gè)


tdd_hist.layout.yaxis.title.text = 'Percent'


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

添加回答

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