0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【xarray】DataArrayをスクロールさせる (roll)

Last updated at Posted at 2023-09-07

この記事では、以下のライブラリを用いる。

import xarray as xr

DataArray.roll()

DataArrayのメソッドroll()を使うと、DataArrayの要素や座標をスクロールさせることができる。

次のDataArrayを例として説明する。

array = xr.DataArray(['a','b','c'], dims='x', coords={'x': [0,1,2]})
array

image.png

使い方①

roll()の引数にスクロール量を指定する。

array.roll(x=1)

image.png

負の数を指定すると逆向きにスクロールする。

array.roll(x=-1)

image.png

使い方②

roll_coordsTrueを指定すると、座標(coordinate)も同時にスクロールする。

array.roll(x=1, roll_coords=True)

image.png

公式ドキュメント

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?