编辑:
以下示例来自Plotly供参考:import plotly.express as px df = px.data.gapminder().query("continent == 'Europe' and year == 2007 and pop > 2.e6") fig = px.bar(df, y='pop', x='country', text='pop') fig.update_traces(texttemplate='%{text:.2s}', textposition='outside') fig.update_layout(uniformtext_minsize=8, uniformtext_mode='hide') fig.show()
如何删除“ pop”一词。
我想隐藏'value'的y轴标题。
fig.update_yaxes(showticklabels=False)
谢谢。
编辑:以下示例来自Plotly以供参考:import plotly.express as px df = px.data.gapminder()。query(“ continent =='Europe'and year == 2007 and pop> 2.e6”)图= px.bar(df,y ='...
fig.update_yaxes(visible=False, showticklabels=False)