You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-24
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
## Empirical Dynamic Modeling (EDM)
2
2
---
3
-
This package provides a Python/Pandas DataFrame interface to the [cppEDM](https://github.com/SugiharaLab/cppEDM"cppEDM") library for [EDM analysis](http://deepeco.ucsd.edu/nonlinear-dynamics-research/edm/"EDM @ Sugihara Lab"). Introduction and documentation are are avilable [online](https://sugiharalab.github.io/EDM_Documentation/"EDM Docs"), or in the package [API docs](https://github.com/SugiharaLab/pyEDM/blob/master/doc/pyEDM.pdf"pyEDM API"). A Jupyter notebook interface is available at [jpyEDM](https://github.com/SugiharaLab/jpyEDM#empirical-dynamic-modeling-edm-jupyter-notebook).
3
+
This package provides a Python/Pandas DataFrame toolset for [EDM analysis](http://deepeco.ucsd.edu/nonlinear-dynamics-research/edm/"EDM @ Sugihara Lab"). Introduction and documentation are are avilable [online](https://sugiharalab.github.io/EDM_Documentation/"EDM Docs"), or in the package [API docs](https://github.com/SugiharaLab/pyEDM/blob/master/doc/pyEDM.pdf"pyEDM API"). A Jupyter notebook interface is available at [jpyEDM](https://github.com/SugiharaLab/jpyEDM#empirical-dynamic-modeling-edm-jupyter-notebook).
4
4
5
5
Functionality includes:
6
6
* Simplex projection ([Sugihara and May 1990](https://www.nature.com/articles/344734a0))
@@ -13,32 +13,11 @@ Functionality includes:
13
13
## Installation
14
14
15
15
### Python Package Index (PyPI)
16
-
Certain MacOS, Linux and Windows platforms are supported with prebuilt binary distributions hosted on PyPI [pyEDM](https://pypi.org/project/pyEDM/).
17
-
18
-
Command line using the Python pip module: `python -m pip install pyEDM`
19
-
20
-
### Manual Install
21
-
If a pre-built binary distribution is not available the user can build the cppEDM library, then install the Python package using pip. On OSX and Linux this requires g++. On Windows, the mingw-w64 GCC is available as in [MSYS2](https://www.msys2.org/).
22
-
23
-
Note the [LAPACK](http://www.netlib.org/lapack/explore-html/index.html) library is required to build cppEDM and pyEDM. As of version 1.15.1, LAPACK is not required on Windows.
0. If a Windows binary is not available, these suggestions may be useful.
32
-
1. mingw-w64 GCC is available in [MSYS2](https://www.msys2.org/).
33
-
2. Prior to version 1.15.1, [gfortran](https://gcc.gnu.org/wiki/GFortranBinariesWindows) and [OpenBLAS](https://www.openblas.net/) libraries are required.
5. Adjust paths to find gfortran and openblas libraries (pyEDM/pyEDM/etc/windows/libopenblas.a). You may need to rename libEDM.a to EDM.lib, and openblas.a to openblas.lib.
37
-
6. Build and install package in `pyEDM\`: `python -m pip install . --user`
16
+
Certain MacOS, Linux and Windows platforms are supported with prebuilt binary distributions hosted on PyPI [pyEDM](https://pypi.org/project/pyEDM/) and can be installed with the Python pip module: `python -m pip install pyEDM`
38
17
39
18
---
40
19
## Usage
41
-
Example usage at the python prompt:
20
+
Examples can be executed in the python command line:
0 commit comments