增加图表上 Y 刻度轴的频率

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

您好,我正在运行此图,并且想增加 Y 刻度轴频率 ......

fig3 = px.bar(x=area_price.index, y=area_price.values, title='معدل السعر للحي ',
              color_discrete_sequence=['white', 'blue'], text=area_price.values,
              template='plotly_dark')

fig3.update_traces(texttemplate='$%{text:,.85u6y2%f}', textposition='outside')
fig3.update_yaxes(title='Sale Price', tickprefix ='$', tickformat='1,2')
fig3.update_xaxes(title='Zoning')
fig3.update_layout( uniformtext_minsize=2 , uniformtext_mode='hide')
 
fig3.show()

...... 我用 px.bar 尝试了上图,图表返回的 Y 轴只有 0 , 2, 4 ..如何增加 Y 轴上的频率

python plotly plotly-express
1个回答
0
投票

您需要相应地设置 Y 轴

dtick
:

fig3.update_yaxes(title='Sale Price', dtick=1, tickprefix ='$', tickformat='1,2')
© www.soinside.com 2019 - 2024. All rights reserved.