python工具推荐 | 基于sklearn的气象实用经验证交函数 (EOF) 分解和旋转EOF分析

2021-03-25 15:13:05 浏览数 (1)

pyEOF: Empirical Orthogonal Function (EOF) analysis and Rotated EOF analysis in Python

项目地址:https://github.com/zzheng93/pyEOF

pyEOF is a Python package for EOF and Rotated EOF Analysis . It takes advantage of

  • sklearn.decomposition.PCA (for EOF)
  • Advanced Priniciple Component Analysis (for varimax rotation // varimax rotated EOF // REOF)

开发者信息

郑中华,美国伊利诺伊大学厄巴纳-香槟分校(UIUC)环境与土木工程(计算科学与工程方向)博士、农业与生物工程硕士,本科毕业于浙江大学生物系统工程专业。现于美国哥伦比亚大学Lamont-Dorhety Earth Observatory从事博士后研究工作。读博期间曾连续三年在拜耳公司(作物科学事业部)、气候公司(The Climate Corporation)、孟山都公司以及美国橡树岭国家实验室担任数据科学实习生(Data Scientist/Research Intern)。郑中华的研究方向包括:空气质量和气溶胶、城市气候与环境、环境数据科学(机器学习、遥感数据、地球系统模式)、农业大数据。

期待能与大家多多交流与合作!

联系方式:zhonghua.zheng@outlook.com

主页(电脑端打开): https://zzheng93.github.io/

Installation

Step 1: create an environment:

代码语言:javascript复制
$ conda create -n pyEOF python=3.7
$ conda activate pyEOF
$ conda install -c conda-forge numpy pandas scipy scikit-learn rpy2

Step 2: install using pip:

代码语言:javascript复制
$ pip install pyEOF

(optional) for jupyter notebook tutorial:

代码语言:javascript复制
$ conda install -c conda-forge numpy pandas scipy scikit-learn rpy2 xarray matplotlib jupyter eofs

(optional) install from source:

代码语言:javascript复制
$ git clone https://github.com/zzheng93/pyEOF.git
$ cd pyEOF
$ python setup.py install

How to use it?

You may reproduce the jupyter notebook example on Binder.

Please check online documentation for more information.

How to ask for help

The GitHub issue tracker is the primary place for bug reports.

pyEOF手册地址:https://pyeof.readthedocs.io/en/latest/index.html

0 人点赞