gpt4 book ai didi

python - 如何在 plotly.py 的旭日形图中换行?

转载 作者:行者123 更新时间:2023-12-05 00:46:03 25 4
gpt4 key购买 nike

我想换行,就像是一个长句子一样,添加换行符使字体更大,例如这里 enter image description here

我有以下数据可以从 https://gofile.io/d/8djNCU 下载:

enter image description here

这是我的代码:

import plotly.express as px
import pandas as pd

df = pd.read_excel("/Users/stuff/Desktop/test.xlsx")

g1 = df.Group1
g2 = df.Group2
g3 = df.Group3
g4 = df.Group4
my_values = df.Values

df = pd.DataFrame(
dict(group1=g1, group2=g2, group3=g3, group4=g4, my_values=my_values)
)

fig = px.sunburst(df, path=['group1', 'group2', 'group3', 'group4'], values='my_values')

fig.show()

当前的旭日形图如下所示: enter image description here

是否可以换行?我希望长文本尽可能大,并用换行符分割,因为我想将图像用于演示。

最佳答案

通过调整 customwrap 函数中的宽度,我能够制作出漂亮的旭日形。答案由 plotly 的 GitHub 社区提供。

import plotly.express as px
import pandas as pd
import textwrap

def customwrap(s,width=30):
return "<br>".join(textwrap.wrap(s,width=width))

df = pd.read_excel("/Users/stuff/Desktop/test.xlsx")

g1 = df.Group1.map(customwrap)
g2 = df.Group2.map(customwrap)
g3 = df.Group3.map(customwrap)
g4 = df.Group4.map(customwrap)
my_values = df.Values

df = pd.DataFrame(
dict(group1=g1, group2=g2, group3=g3, group4=g4, my_values=my_values)
)
fig = px.sunburst(df, path=['group1', 'group2', 'group3', 'group4'], values='my_values')

fig.show()

关于python - 如何在 plotly.py 的旭日形图中换行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62151608/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com