如何在Altair中创建分组条形图?

时间:2017-05-05 05:47:36

标签: python data-visualization altair

如何在Altair中创建分组条形图?我尝试了以下内容,但它只是并排生成两个图表。

object.

This is the image produce

1 个答案:

答案 0 :(得分:7)

组条形图示例

我在Altair的文档中展示了Grouped Bar Chart的简化示例。您还可以查看完整文档here

基本上,您必须指定x轴Gender(每个子图中的F或M),y轴指定为RatingGenre指定为Column

from altair import *
import pandas as pd

# create dataframe
df = pd.DataFrame([['Action', 5, 'F'], 
                   ['Crime', 10, 'F'], 
                   ['Action', 3, 'M'], 
                   ['Crime', 9, 'M']], 
                  columns=['Genre', 'Rating', 'Gender'])

chart = Chart(df).mark_bar().encode(
   column=Column('Genre'),
   x=X('Gender'),
   y=Y('Rating'),
   color=Color('Gender', scale=Scale(range=['#EA98D2', '#659CCA']))
).configure_facet_cell(
    strokeWidth=0.0,
)

chart.display() # will show the plot

条形图如下所示

image

添加轴参数

您只需要遵循文档中的Axis参数,即可让情节看起来更漂亮:

chart = Chart(df).mark_bar().encode(
   column=Column('Genre', 
                 axis=Axis(axisWidth=1.0, offset=-8.0, orient='bottom'),
                 scale=Scale(padding=4.0)),
   x=X('Gender', axis=False),
   y=Y('Rating', axis=Axis(grid=False)),
   color=Color('Gender', scale=Scale(range=['#EA98D2', '#659CCA']))
).configure_facet_cell(
    strokeWidth=0.0,
)

chart.display()

Imgur