饼图的Plotly express更新

2024-04-28 20:55:47 发布

您现在位置:Python中文网/ 问答频道 /正文

下面的代码生成一个饼图,显示在图片中。我需要在饼图中的价格后面加一个$符号,有人能帮我吗?我只是开始有计划地探索:)提前谢谢你

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"
   )

Pie chart


Tags: sizetitletypechartupdatefamilypricecolor
1条回答
网友
1楼 · 发布于 2024-04-28 20:55:47

fig.update_traces method中,您可以传递textinfo='text'而不是textinfo='labels',然后将文本定义为数据帧中的价格列表,每个价格的前缀为美元符号

import pandas as pd
import plotly.express as px

# pie = data[["room_type","price"]]
# pie_chart = pie.groupby(['room_type'], as_index=False).median()

## recreate DataFrame
pie_chart = pd.DataFrame({
    'room_type':['Entire room/apt','Private room','Shared room'],
    'price': ['68','35','16']
})

fig3 = px.pie(pie_chart,
          values='price',
          names='room_type',
          color_discrete_sequence =['#de425b','#ef805b','#f7b672'])
## pass a list of values 
fig3.update_traces(
    hoverinfo='label+percent', 
    text=['$' + price for price in pie_chart.price.values],
    textinfo='text', 
    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"
   )
fig3.show()

enter image description here

相关问题 更多 >