我正在与Altair一起工作,并喜欢它以进行快速可视化。不过,我在微调格式方面有些挣扎,尤其是在分组条形图的填充和尝试获取非重复标题方面。
请查看到目前为止的情节:JacksonJsonProvider
以及生成绘图的代码:
dfc = pd.DataFrame({'Alternative': {0: 0, 1: 1, 2: 0, 3: 1, 4: 0, 5: 1, 6: 0, 7: 1},
'Time': {0: 1979,
1: 1979,
2: 1980,
3: 1980,
4: 1980,
5: 1980,
6: 1980,
7: 1980},
'Sim #': {0: 2688, 1: 3564, 2: 86, 3: 424, 4: 743, 5: 884, 6: 1530, 7: 1612},
'Cost_MNOK': {0: .5,
1: .4,
2: 2,
3: 3,
4: 30,
5: 40,
6: 200,
7: 300},
'freq': {0: 5.555555555555556e-06,
1: 5.555555555555556e-05,
2: 5.555555555555556e-06,
3: 5.555555555555556e-05,
4: 5.555555555555556e-06,
5: 5.555555555555556e-05,
6: 5.555555555555556e-06,
7: 5.555555555555556e-05},
'Bin_text': {0: '0-1 MNOK',
1: '0-1 MNOK',
2: '1-10 MNOK',
3: '1-10 MNOK',
4: '10-100 MNOK',
5: '10-100 MNOK',
6: '100+ MNOK',
7: '100+ MNOK'},
'Bin': {0: 1, 1: 1, 2: 2, 3: 2, 4: 3, 5: 3, 6: 4, 7: 4}})
heatmap_colors = ['#edf8fb', '#b2e2e2', '#66c2a4', 'red']
alt.Chart(dfc).mark_bar().encode(
alt.Column('Bin_text', header=alt.Header(title='Occurrence of failures grouped by cost')),
alt.X('Alternative:N', axis=alt.Axis(orient='bottom', ), title='Alt'),
alt.Y('sum(freq)', axis=alt.Axis(grid=False, format='%', title='Frequency')),
alt.Color('Bin_text', scale=alt.Scale(range=heatmap_colors), legend=alt.Legend(title='Bins')),
alt.Tooltip('sum(freq)', format='.2%')
).configure_view(strokeOpacity=0)
我要实现的目标如下:
.properties(width=200)
可以提供更大的间距,并且图标题变得可读。问题的另一部分仍然存在。欢迎任何想法和提示!
答案 0 :(得分:0)
从Altair v2.1 / Vega-Lite v2.6开始,无法更改构面之间的填充或自定义构面属性(例如标题)。
跟踪此功能的相关问题在这里:https://github.com/vega/vega-lite/issues/2446