Metadata-Version: 2.1
Name: pyeee
Version: 4.1.3
Summary: pyeee: a library providing parameter screening of computational models using the Morris method of Elementary Effects or its extension of Efficient Elementary Effects by Cuntz, Mai et al. (Water Res Research, 2015).
Home-page: https://github.com/mcuntz/pyeee
Author: Matthias Cuntz, Juliane Mai
Author-email: mc@macu.de
Maintainer: Matthias Cuntz
Maintainer-email: mc@macu.de
License: MIT
Project-URL: Documentation, https://mcuntz.github.io/pyeee/
Project-URL: Source, https://github.com/mcuntz/pyeee
Project-URL: Tracker, https://github.com/mcuntz/pyeee/issues
Project-URL: Changelog, https://github.com/mcuntz/pyeee/blob/main/CHANGELOG.rst
Project-URL: Conda-Forge, https://anaconda.org/conda-forge/pyeee
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: schwimmbad
Requires-Dist: pyjams
Provides-Extra: doc
Requires-Dist: numpydoc<2,>=1.1; extra == "doc"
Requires-Dist: jinja2>=2; extra == "doc"
Requires-Dist: sphinx<7,>=4; extra == "doc"
Requires-Dist: sphinx_book_theme>=1.0.1; extra == "doc"
Provides-Extra: test
Requires-Dist: partialwrap; extra == "test"
Requires-Dist: setuptools>=42; extra == "test"
Requires-Dist: coverage[toml]<6,>=5.2.1; extra == "test"
Requires-Dist: pytest<7,>=6.0; extra == "test"
Requires-Dist: pytest-cov<3,>=2.11.0; extra == "test"

pyeee - Efficient parameter screening of computational models
=============================================================
..
   pandoc -f rst -t html -o README.html README.rst

A Python library for parameter screening of computational models using
the extension of Morris' method of Elementary Effects called Efficient
or Sequential Elementary Effects by Cuntz, Mai et al. (Water Res
Research, 2015).

|DOI| |PyPI version| |Conda version| |License| |Build Status| |Coverage Status|


About pyeee
-----------

**pyeee** is a Python library for performing parameter screening of
computational models. It uses the extension of Morris' method of
Elementary Effects of so-called Efficient or Sequential Elementary
Effects published by

Cuntz, Mai `et al.` (2015) Computationally inexpensive identification
of noninformative model parameters by sequential screening,
`Water Resources Research` 51, 6417-6441, doi: `10.1002/2015WR016907`_.

**pyeee** can be used with Python functions but also with external
programs, using for example the library `partialwrap`_. Function
evaluation can be distributed with Python's `multiprocessing`_ module
or via the Message Passing Interface (`MPI`_).


Documentation
-------------

The complete documentation for **pyeee** is available at Github Pages:

   https://mcuntz.github.io/pyeee/


Quick usage guide
-----------------

Simple Python function
^^^^^^^^^^^^^^^^^^^^^^

Consider the Ishigami-Homma function:
``y = sin(x_0) + a * sin(x_1)^2 + b * x_2^4 * sin(x_0)``.

Taking ``a = b = 1`` gives:

.. code:: python

   import numpy as np
   def ishigami1(x):
       return np.sin(x[0]) + np.sin(x[1])**2 + x[2]**4 * np.sin(x[0])

The three paramters ``x_0``, ``x_1``, ``x_2`` follow
uniform distributions between ``-pi`` and ``+pi``.

Morris' Elementary Effects can then be calculated using, for example,
the Python library `pyjams`_, giving the Elementary Effects (``mu*``):

.. code:: python

   from pyjams import ee

   npars = 3
   # lower boundaries
   lb = np.ones(npars) * (-np.pi)
   # upper boundaries
   ub = np.ones(npars) * np.pi
   # Elementary Effects
   np.random.seed(seed=1023)  # for reproducibility of examples
   out = ee(ishigami1, lb, ub, 10)   # mu*
   print("{:.1f} {:.1f} {:.1f}".format(*out[:, 0]))
   # gives: 173.1 0.6 61.7

Sequential Elementary Effects distinguish between informative and
uninformative parameters using several times Morris' Elementary
Effects, returning a logical ndarray with True for the informative
parameters and False for the uninformative parameters:

.. code:: python

   from pyeee import eee

   # screen
   np.random.seed(seed=1023)  # for reproducibility of examples
   out = eee(ishigami1, lb, ub, ntfirst=10)
   print(out)
   [ True False  True]


Python function with extra parameters
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The function for **pyeee** must be of the form ``func(x)``. Use
Python's `partial`_ from the `functools`_ module to pass other
function parameters. For example pass the parameters ``a`` and ``b``
to the Ishigami-Homma function.

.. code:: python

   import numpy as np
   from pyeee import eee
   from functools import partial

   def ishigami(x, a, b):
      return np.sin(x[0]) + a * np.sin(x[1])**2 + b * x[2]**4 * np.sin(x[0])

   def call_ishigami(func, a, b, x):
      return func(x, a, b)

   # Partialise function with fixed parameters
   a = 0.5
   b = 2.0
   func  = partial(call_ishigami, ishigami, a, b)

   npars = 3
   # lower boundaries
   lb = np.ones(npars) * (-np.pi)
   # upper boundaries
   ub = np.ones(npars) * np.pi
   # Elementary Effects
   np.random.seed(seed=1023)  # for reproducibility of examples
   out = eee(func, lb, ub, ntfirst=10)

Figuratively speaking, `partial`_ passes ``a`` and ``b`` to the
function ``call_ishigami`` already during definition so that ``eee``
can then simply call it as ``func(x)``, where ``x`` is passed to
``call_ishigami`` then as well.


Function wrappers
^^^^^^^^^^^^^^^^^

We recommend to use our package `partialwrap`_ for external
executables, which allows easy use of external programs and also their
parallel execution. See the `userguide`_ for details. A trivial
example is the use of `partialwrap`_ for the above function wrapping:

.. code:: python

   from partialwrap import function_wrapper
   
   args = [a, b]
   kwargs = {}
   func = partial(func_wrapper, ishigami, args, kwargs)
   # screen
   out = eee(func, lb, ub, ntfirst=10)


Installation
------------

The easiest way to install is via `pip`:

.. code-block:: bash

   pip install pyeee

or via `conda`:

.. code-block:: bash

   conda install -c conda-forge pyeee


Requirements
------------

- `NumPy <https://www.numpy.org>`__
- `SciPy <https://www.numpy.org>`__
- `schwimmbad <https://github.com/adrn/schwimmbad>`__
- `pyjams <https://github.com/mcuntz/pyjams>`__


License
-------

**pyeee** is distributed under the MIT License. See the
`LICENSE`_ file for details.

Copyright (c) 2019-2024 Matthias Cuntz, Juliane Mai

The project structure is based on a `template`_ provided by `Sebastian Müller`_.

.. |DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3620909.svg
   :target: https://doi.org/10.5281/zenodo.3620909
.. |PyPI version| image:: https://badge.fury.io/py/pyeee.svg
   :target: https://badge.fury.io/py/pyeee
.. |Conda version| image:: https://img.shields.io/conda/vn/conda-forge/pyeee.svg
   :target: https://anaconda.org/conda-forge/pyeee
.. |License| image:: http://img.shields.io/badge/license-MIT-blue.svg?style=flat
   :target: https://github.com/mcuntz/pyeee/blob/master/LICENSE
.. |Build Status| image:: https://github.com/mcuntz/pyeee/workflows/Continuous%20Integration/badge.svg?branch=master
   :target: https://github.com/mcuntz/pyeee/actions
.. |Coverage Status| image:: https://coveralls.io/repos/github/mcuntz/pyeee/badge.svg?branch=master
   :target: https://coveralls.io/github/mcuntz/pyeee?branch=master

.. _10.1002/2015WR016907: http://doi.org/10.1002/2015WR016907
.. _LICENSE: https://github.com/mcuntz/pyeee/LICENSE
.. _MPI: https://bitbucket.org/mpi4py/mpi4py
.. _Sebastian Müller: https://github.com/MuellerSeb
.. _functools: https://docs.python.org/3/library/functools.html
.. _multiprocessing: https://docs.python.org/3/library/multiprocessing.html
.. _partial: https://docs.python.org/3/library/functools.html#functools.partial
.. _partialwrap: https://mcuntz.github.io/partialwrap/
.. _pyjams: https://mcuntz.github.io/pyjams/
.. _template: https://github.com/MuellerSeb/template
.. _userguide: https://mcuntz.github.io/pyeee/html/userguide.html
