我有一個 xarray DataArray,其坐標不均勻,如下所示:
print(da)
<xarray.DataArray 'Sa' (y: 679, x: 87)>
array([[1. , 0.677667, 0.658552, ..., 0.583562, 0.443248, 0.366353],
[0.799933, 0.929478, 1. , ..., 0.386675, 0.316399, 0.284364],
[0.952748, 0.844993, 0.793359, ..., 0.724242, 0.554958, 0.295785],
...,
[0.983343, 0.98983 , 1. , ..., 0.601416, 0.592084, 0.586747],
[0.997548, 1. , 0.99682 , ..., 0.596712, 0.591876, 0.58533 ],
[0.995427, 1. , 0.990861, ..., 0.581317, 0.588433, 0.585797]])
Coordinates:
* y (y) float64 -0.1274 -0.1224 -0.1174 -0.1124 ... 3.253 3.258 3.263
* x (x) float64 4.002 3.971 3.961 3.95 3.94 ... 3.407 3.401 3.396 3.39
我可以用該方法繪制它DataArray.plot并獲得一個 matplotlibQuadMesh物件:
da.plot()

我不知道如何更改自動設定為 DataAray name 的顏色條標簽"Sa"。
uj5u.com熱心網友回復:
當二維資料在 xarray 中使用pcolormesh進行繪圖時,您可以設定顏色條標簽,以提供cbar_kwargs傳遞給 matplotlib 的字典:
da.plot(cbar_kwargs={'label': "This is the new label"})
有關可能引數的完整串列,請參閱matplotlib 檔案中的關鍵字。
轉載請註明出處,本文鏈接:https://www.uj5u.com/qiye/433229.html
標籤:Python matplotlib python-xarray
