具有无量纲坐标的Xarray plot.line

时间:2018-08-30 18:50:25

标签: python python-xarray

我希望使用非尺寸坐标而不是尺寸坐标来绘制一系列线图。

在pcolormesh中是可能的:

df

plot in terms of y,x, the dimensional coordinate

plot in terms of lon, lat, the non-dimensional coordinate

plot lines in terms of x,y, the dimensional coordinate

基本上,我想绘制2D数据中的线切割。

我可以使用下面的基本matplotlib来做到这一点,但我希望在xarray中使用1个衬里。

df2 = df2[df2[DELAYED_DAYS] > late_threshold]
df2.drop([DELIVERY_DATE, DESIRED_DATE], axis=1, inplace=True)

What I want

1 个答案:

答案 0 :(得分:1)

我不确定为什么DataArray.plot.line不允许无维坐标。您应该将其提交为issue

对于单线解决方案,您可以使用以下方法省略for循环:

img {
  max-width: 200px;
  padding:8px;
}