gpt4 book ai didi

python-3.x - 排序 Altair 列顺序

转载 作者:行者123 更新时间:2023-12-04 01:27:45 34 4
gpt4 key购买 nike

我是 Altair 的新手,粗略地结合了 here 中的一些代码和 here这给了我下面的情节,但我无法弄清楚为什么我的列以非连续顺序显示。我的数据框如下:

import pandas as pd

TimeMth = pd.DataFrame([['Jul-2011', '> 1.1 pu', 86],
['Jul-2011', '< 0.94 pu', 18],
['Aug-2011', '> 1.1 pu', 205],
['Aug-2011', '< 0.94 pu', 510],
['Sep-2011', '> 1.1 pu', 53],
['Sep-2011', '< 0.94 pu', 140],
['Oct-2011', '> 1.1 pu', 10],
['Oct-2011', '< 0.94 pu', 0],
['Nov-2011', '> 1.1 pu', 36],
['Nov-2011', '< 0.94 pu', 13],
['Dec-2011', '> 1.1 pu', 7],
['Dec-2011', '< 0.94 pu', 0],
['Jan-2012', '> 1.1 pu', 17],
['Jan-2012', '< 0.94 pu', 0],
['Feb-2012', '> 1.1 pu', 0],
['Feb-2012', '< 0.94 pu', 0],
['Mar-2012', '> 1.1 pu', 17],
['Mar-2012', '< 0.94 pu', 1],
['Apr-2012', '> 1.1 pu', 49],
['Apr-2012', '< 0.94 pu', 79],
['May-2012', '> 1.1 pu', 8],
['May-2012', '< 0.94 pu', 0],
['Jun-2012', '> 1.1 pu', 40],
['Jun-2012', '< 0.94 pu', 12]],
columns=['Month','Voltage','No of Violations'])

然后我尝试用它来绘制:

import altair as alt

chartTimeMth = alt.Chart(TimeMth).mark_bar().encode(
column=alt.Column('Month',
axis=alt.Axis(axisWidth=1.0,
offset=-8.0, orient='bottom', labelAngle=-45,
labelAlign='right'),
scale=alt.Scale(padding=4.0)),
x=alt.X('Voltage',
axis=False),
y=alt.Y('No of Violations', title='No. of voltage violations',
axis=alt.Axis(grid=False)),
color=alt.Color('Voltage', scale=alt.Scale(range=['#96ceb4', '#ffcc5c']))
).configure_facet_cell(
strokeWidth=0.0,)\
.configure_scale(bandSize=12)\
.configure_legend(titleFontSize=12, offset=-60, orient='right')

chartTimeMth.display()

当我使用 sortField 时在列上它接近我需要的但仍然不正确。我想这与我的列(月)数据是文本有关吗?关于为什么上面的代码(省略了 sortField 类)没有按索引顺序绘制列的任何想法?如果我的 Month 数据是 datetimeindex,有没有办法告诉 Altair 标记 x 轴,如下所示(即 mmm-yyyy)?

enter image description here

最佳答案

您可以指定 data type使用 type 关键字。

column=alt.Column('Month',type='temporal', ....

您还可以使用 Encoding Shorthands定义数据类型

column=alt.Column('Month:T', ...

至于轴的格式,您可以通过 format 关键字 date directive string当你制作你的轴时

axis = alt.Axis(..., format='%b-%Y')

这是经过上述更改后的您之前的代码。

chartTimeMth = alt.Chart(TimeMth).mark_bar().encode(
column=alt.Column(
'Month:T',
axis=alt.Axis(
axisWidth=1.0,
offset=-8.0,
orient='bottom',
labelAngle=-45,
labelAlign='right',
format='%b-%Y'
),
scale=alt.Scale(padding=4.0)
),
x=alt.X('Voltage', axis=False),
y=alt.Y(
'No of Violations',
title='No. of voltage violations',
axis=alt.Axis(grid=False)),
color=alt.Color(
'Voltage',
scale=alt.Scale(range=['#96ceb4', '#ffcc5c'])
)
).configure_facet_cell(strokeWidth=0.0,)\
.configure_scale(bandSize=12)\
.configure_legend(titleFontSize=12, offset=-60, orient='right')

enter image description here

关于python-3.x - 排序 Altair 列顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48595423/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com