我有以下 Chartify 代码片段。
ch = chartify.Chart(blank_labels=True, x_axis_type='categorical', layout="slide_100%")
ch.set_title("Grouped bar chart")
ch.set_subtitle(
"Pass a list to group by multiple factors. Color grouped by 'fruit'")
ch.plot.bar(
data_frame=df_chart,
categorical_columns=["month", "account"],
numeric_column="bill",
color_column="account",
categorical_order_by=sort_order
)
ch.plot.text(
data_frame=df_chart,
categorical_columns=["month", "account"],
numeric_column='bill',
text_column='billdisp',
color_column='account',
categorical_order_by=sort_order
)
ch.axes.hide_xaxis()
ch.show('png')
它产生以下图表:
每个条形对应于“帐户”列。如您所见,X 轴已经很拥挤了。
如何在图表中添加图例?我想说蓝色 = account-1,绿色 = account-2,橙色 = account 3。