diff options
author | Vinicius Monego <monego@posteo.net> | 2023-10-07 07:53:23 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2023-11-03 19:25:35 -0300 |
commit | 96e8502faaa52dd96743c376e3b7e5a66a07144a (patch) | |
tree | 0bfe4648ec416b1b4d744a06203f49f326f68589 | |
parent | a7d56852e3c177db614aebc1934b00ee17014472 (diff) |
gnu: Add python-emcee.
* gnu/packages/statistics.scm (python-emcee): New variable.
-rw-r--r-- | gnu/packages/statistics.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 40a431b55c..55f04e8e72 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2317,6 +2317,29 @@ uncertainties and are backed by strong theoretical guarantees thanks to conformal prediction methods intervals.") (license license:bsd-3))) +(define-public python-emcee + (package + (name "python-emcee") + (version "3.1.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "emcee" version)) + (sha256 + (base32 "1vbz67cwzig28dlndkm6g246p1vcvj6yy2w65z8cdyffigf1j3lf")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-numpy)) + (native-inputs (list python-coverage + python-pytest + python-pytest-cov + python-setuptools-scm)) + (home-page "https://emcee.readthedocs.io/en/stable/") + (synopsis "Ensemble sampling toolkit for MCMC") + (description + "@code{emcee} is a Python implementation of the affine-invariant ensemble +sampler for Markov chain Monte Carlo (MCMC).") + (license license:expat))) + (define-public python-statsmodels (package (name "python-statsmodels") |