gpt4 book ai didi

pandas - 通过在 Pandas 中调用袖扣来改变身材大小

转载 作者:行者123 更新时间:2023-12-05 09:18:01 26 4
gpt4 key购买 nike

我正在尝试更改我使用 Plotly Pandas 袖扣调用的图形的图形大小(高度和宽度)。我知道我可以从 plotly.graph_objs 中单独布局,然后给出高度和宽度命令。但是,有没有一种方法可以使用袖扣控制字体和/或图形参数。

我正在绘制 X 轴上股票退市的原因以及 Y 轴上的数量。

这是我的代码

grped = d_list_data.groupby(['Reasons Short']).size()
import cufflinks as cf
grped.iplot(kind = 'bar',
xTitle = 'Reasons for Delisting',
yTitle= 'Count',
title= 'Delisting Reasons since 2001',
theme = 'polar',
)

最佳答案

使用所需的高度和宽度属性定义布局,并在袖扣 iplot 调用中使用它。

layout1 = cf.Layout(
height=300,
width=200
)
grped.iplot(kind = 'bar',
xTitle = 'Reasons for Delisting',
yTitle= 'Count',
title= 'Delisting Reasons since 2001',
theme = 'polar',
layout=layout1
)

关于pandas - 通过在 Pandas 中调用袖扣来改变身材大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46016712/

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