【发布时间】:2023-03-19 06:40:02
【问题描述】:
下面的代码会生成一个以图片形式呈现的饼图。我需要在饼图中的价格后添加一个 $ 符号,有人可以帮我这样做吗?我刚刚开始探索 :) 提前谢谢你!
pie = data[["room_type","price"]]
pie_chart = pie.groupby(['room_type'], as_index=False).median()
fig3 = px.pie(pie_chart,
values='price',
names='room_type',
color_discrete_sequence =['#de425b','#ef805b','#f7b672'])
fig3.update_traces(hoverinfo='label+percent', textinfo='value', textfont_size=17)
fig3.update_layout(
title_text = 'Median of prices per room type',
legend_title = 'Room type',
title_font = dict(family='Courier', size=16, color='black'),
title_x=0.5,
font_family="Courier",
font_color="black",
legend_title_font_color="black"
)
【问题讨论】:
标签: python plotly data-science pie-chart plotly-express