xarray官方文档 学习笔记(序章)

个人需要开了这个坑

不定时更新

希望能和大家共同学习和交流

工作中难免有不足和错误,希望大家多多批评指正


xarray官方文档首页:http://xarray.pydata.org/en/stable/

此处设置的版本为stable,stable版本的官方文档是本专栏的主要参考资料。


-------------------------------------------------------------------------------------------------

首页是这样的:

xarray: N-D labeled arrays and datasets in Python

xarray:python中的多维层次数组与数据集

xarray (formerly xray) is an open source project and Python package that aims to bring the labeled data power of pandas to the physical sciences,by providing N-dimensional variants of the core pandas data structures.

xarray(之前的xray)是一个开源的python程序包,其目的是通过提供以pandas为核心的多维数据结构变体,将pandas层次化的优点应用于物理科学中。

Our goal is to provide a pandas-like and pandas-compatible toolkit for analytics on multi-dimensional arrays, rather than the tabular data for which pandas excels. Our approach adopts the Common Data Model for self-describing scientific data in widespread use in the Earth sciences:xarray.Dataset is an in-memory representation of a netCDF file.

我们的目标是建立一个类似pandas并可兼容pandas的工具,用于分析多维array数组,而不是pandas擅长的表格数据。我们的方法吸收了一个用于实现科学数据自我描述的基础数据模型(common data model),它广泛应用于地球科学的数据处理中:xarray.Dataset在内存中代表一个netCDF格式的文件。

See also

Get in touch 提问的途径

  • Ask usage questions (“How do I?”) on StackOverflow.
  • Report bugs, suggest features or view the source code on GitHub.
  • For less well defined questions or ideas, or to announce other projects of interest to xarray users, use the mailing list.

License开源协议

xarray is available under the open source Apache License. xarray的开源协议是apache协议。

History历史

xarray is an evolution of an internal tool developed at The Climate Corporation. It was originally written by Climate Corp researchers StephanHoyer, Alex Kleeman and Eugene Brevdo and was released as open source inMay 2014. The project was renamed from “xray” in January 2016.


猜你喜欢

转载自blog.csdn.net/weixin_39781307/article/details/80790874