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

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

Plotly:如何在注釋中同時(shí)使用美元符號(hào)和換行符?

Plotly:如何在注釋中同時(shí)使用美元符號(hào)和換行符?

MM們 2023-07-18 16:34:26
不確定我是否在這里遺漏了一些明顯的東西,但是當(dāng)我在帶有注釋的文本中插入一個(gè)中斷(<br>)時(shí),它似乎忽略了它。我已經(jīng)嘗試過(guò)fig.add_annotations,但同樣的事情發(fā)生了。你知道為什么這不起作用嗎?import pandas as pdimport plotly.graph_objects as goimport numpy as npdf = pd.DataFrame({"Growth_Type": ["Growing Fast", "Growing", "Stable", "Dropping", "Dropping Fast"],                  "Accounts": [407,1275,3785,1467,623],                  "Gain_Share": [1.20,8.1,34.4,6.5,0.4],                  "Keep_Share": [16.5, 101.2, 306.3, 107.2, 27.7]})df2 = pd.concat([pd.DataFrame({"Growth_Type":df["Growth_Type"],               "Opportunity_Type": np.repeat("Gain Share", 5),             "Wallet_Share": df["Gain_Share"]}),          pd.DataFrame({"Growth_Type":df["Growth_Type"],               "Opportunity_Type": np.repeat("Keep Share", 5),             "Wallet_Share": df["Keep_Share"]})])fig = go.Figure()fig.add_trace(go.Bar(x = df2["Wallet_Share"],                      y = df2["Growth_Type"],                     orientation = "h"                    ))fig.update_layout(font = dict(size = 12, color = "#A6ACAF"),                 xaxis_tickprefix = "$",                  plot_bgcolor = "white",                  barmode = "stack",                  margin = dict(l = 150,                                r = 250,                               b = 100,                               t = 100),                  annotations = [dict(text = 'Dropping presents a gain share<br>opportunity of $6.5 mill and a<br>keep share opportunity of $34.4 mill',                  xref = "x",                  yref = "y",                  x = 360,                  y = "Dropping",                  showarrow = False,                  yanchor = "bottom")]                 )fig.show()
查看完整描述

1 回答

?
12345678_0001

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

造成這里麻煩的不是換行符;而是換行符。這是美元符號(hào)。但是您可以使用可打印的 ASCII 字符?'&#36;'來(lái)獲取您想要的內(nèi)容:

text?=?'Dropping?presents?a?gain?share<br>opportunity?of?'+?'&#36;'+?'6.5?mill?and?a<br>keep?share?opportunity?of?'?+?'&#36;'+?'34.4?mill'

陰謀:

http://img1.sycdn.imooc.com/64b64ec00001b9a806350330.jpg

完整代碼:

import pandas as pd

import plotly.graph_objects as go

import numpy as np


df = pd.DataFrame({"Growth_Type": ["Growing Fast", "Growing", "Stable", "Dropping", "Dropping Fast"],

? ? ? ? ? ? ? ? ? "Accounts": [407,1275,3785,1467,623],

? ? ? ? ? ? ? ? ? "Gain_Share": [1.20,8.1,34.4,6.5,0.4],

? ? ? ? ? ? ? ? ? "Keep_Share": [16.5, 101.2, 306.3, 107.2, 27.7]})


df2 = pd.concat([pd.DataFrame({"Growth_Type":df["Growth_Type"],?

? ? ? ? ? ? ? "Opportunity_Type": np.repeat("Gain Share", 5),

? ? ? ? ? ? ?"Wallet_Share": df["Gain_Share"]}),

? ? ? ? ? pd.DataFrame({"Growth_Type":df["Growth_Type"],?

? ? ? ? ? ? ? "Opportunity_Type": np.repeat("Keep Share", 5),

? ? ? ? ? ? ?"Wallet_Share": df["Keep_Share"]})])


fig = go.Figure()


fig.add_trace(go.Bar(x = df2["Wallet_Share"],?

? ? ? ? ? ? ? ? ? ? ?y = df2["Growth_Type"],

? ? ? ? ? ? ? ? ? ? ?orientation = "h"

? ? ? ? ? ? ? ? ? ? ))


fig.update_layout(font = dict(size = 12, color = "#A6ACAF"),

? ? ? ? ? ? ? ? ?xaxis_tickprefix = "$",

? ? ? ? ? ? ? ? ? plot_bgcolor = "white",

? ? ? ? ? ? ? ? ? barmode = "stack",

? ? ? ? ? ? ? ? ? margin = dict(l = 150,?

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?r = 250,

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?b = 100,

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?t = 100),

? ? ? ? ? ? ? ? ? annotations = [dict(text = 'Dropping presents a gain share<br>opportunity of '+ '&#36;'+ '6.5 mill and a<br>keep share opportunity of ' + '&#36;'+ '34.4 mill',

? ? ? ? ? ? ? ? ? #annotations = [dict(text = '&#36;',

? ? ? ? ? ? ? ? ? xref = "x",

? ? ? ? ? ? ? ? ? yref = "y",

? ? ? ? ? ? ? ? ? x = 360,

? ? ? ? ? ? ? ? ? y = "Dropping",

? ? ? ? ? ? ? ? ? showarrow = False,

? ? ? ? ? ? ? ? ? yanchor = "bottom")]

? ? ? ? ? ? ? ? ?)


fig.show()


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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