Xarray provides a pandas-like experience for multidimensional data. It is the core of the Pangeo ecosystem and is essential for working with NetCDF, GRIB, and Zarr formats.
Official docs: https://docs.xarray.dev/ Tutorials: https://tutorial.xarray.dev/ Search patterns: xr.DataArray, xr.Dataset, ds.sel, ds.groupby, ds.resample, xr.opendataset
| DataArray | A single labeled N-dimensional array. | Like a pandas.Series but N-D. | | Dataset | A dict-like container of multiple DataArrays. | Like a pandas.DataFrame but N-D. |
Python의 N차원 레이블이 지정된 배열 및 데이터 세트. NumPy와 Dask를 기반으로 구축되었습니다. 원시 NumPy와 유사한 배열 위에 차원, 좌표 및 속성 형태의 레이블을 도입하여 물리 과학의 데이터 분석을 보다 직관적이고 오류 가능성을 줄입니다. 다차원 과학 데이터, NetCDF/GRIB/Zarr 파일, 기후/기상/해양학 데이터 세트, 원격 감지, 지리 공간 이미징, Dask를 사용한 대규모 메모리 부족 데이터 세트 및 레이블이 있는 배열 작업 작업에 사용합니다. 출처: tondevrel/scientific-agent-skills.