gpt4 book ai didi

python - Plotly:如何在 facet 网格中旋转 yaxis 标题?

转载 作者:行者123 更新时间:2023-12-05 02:49:45 24 4
gpt4 key购买 nike

enter image description here

您好,您看到的问题是右边的标题挤在一起了,请问有什么方法可以旋转吗?非常感谢。

fig = px.box(df, 'deposit_amt', color = 'class', facet_row= 'Age_Group')

最佳答案

此处的正确答案很可能在很大程度上取决于您塑造身材的方式。你看,你在这里试图修复的实际上是一些注释的角度。如果你是对的,在你的图中显示为困惑的文本实际上是 yaxis 的标题,你可以使用稍微不同的方法构建你的 plotly ,然后使用

for annotation in fig['layout']['annotations']: 
annotation['textangle']= 0

我将使用存储在 px.data.tips() 中的数据集来向您展示我的意思。该数据集似乎与您的真实世界数据集相似程度令人满意。至少可以用它来构建这个数字:

enter image description here

现在,应用上面的代码片段,您将获得:

enter image description here

完整代码:

import plotly.express as px
df = px.data.tips()
fig = px.box(df, x="tip", y="sex", facet_row='time', color = 'time')

for annotation in fig['layout']['annotations']:
annotation['textangle']= 0

fig.show()

关于python - Plotly:如何在 facet 网格中旋转 yaxis 标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63938048/

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