1

我有以下 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。

4

1 回答 1

0

您可以通过添加 3 个额外的空白图来伪造它,这些空白图仅用于添加您选择的图例。

# Previous code

plt.plot([], [], label='Account 1', c='b')
plt.plot([], [], label='Account 2', c='g')
plt.plot([], [], label='Account 3', c='orange')
plt.legend()
plt.show()
于 2019-03-02T15:52:13.233 回答