Python 绘图中的乱码/格式错误的负 y 轴值

问题描述 投票:0回答:1

我试图在绘图中绘制一个代表净收益的条形图(将具有正值和负值)。但 y 轴上的负值在某种程度上是以乱码表示的。我尝试了几种方法,包括使用

update_layout
函数,但似乎没有任何效果。我使用
make_subplots
函数,因为我想在一个图上绘制多个可视化。

我正在使用 databricks 来编写此代码。 附上我的代码和可视化输出:

net_gains = pd.DataFrame()
net_gains["general_net_gain"] = [-2,2,-1,2]


fig = plotly.subplots.make_subplots(rows=1, cols=1)
fig.add_bar(x=net_gains.index, y=net_gains["general_net_gain"], row=1, col=1)
fig.update_layout(height=400,width=500,showlegend=True)

python python-3.x pandas matplotlib plotly
1个回答
0
投票

尝试从 GitHub

添加脚本

plotly-latest.min.js plotly-interop.js

© www.soinside.com 2019 - 2024. All rights reserved.