From 4bf95da3465b0975aafeb3f54be9fac3ba9808a8 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 9 Nov 2021 12:08:50 +0000 Subject: [PATCH] README updated --- README.md | 12 ++++++------ pyerrors/__init__.py | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 1b34e861..4e4a0a9d 100644 --- a/README.md +++ b/README.md @@ -8,17 +8,17 @@ - **Bug reports:** https://github.com/fjosw/pyerrors/issues ## Installation -To install the most recent release of `pyerrors` run -```bash -pip install git+https://github.com/fjosw/pyerrors.git@master -``` -to install the current `develop` version run +To install the current `develop` version run ```bash pip install git+https://github.com/fjosw/pyerrors.git@develop ``` +to install the most recent release run +```bash +pip install git+https://github.com/fjosw/pyerrors.git@master +``` ## Other implementations -There exist similar implementations of gamma method error analysis suites in +There exist similar publicly available implementations of gamma method error analysis suites in - [Fortran](https://gitlab.ift.uam-csic.es/alberto/aderrors) - [Julia](https://gitlab.ift.uam-csic.es/alberto/aderrors.jl) - [Python](https://github.com/mbruno46/pyobs) diff --git a/pyerrors/__init__.py b/pyerrors/__init__.py index 8c0b8483..4ef64352 100644 --- a/pyerrors/__init__.py +++ b/pyerrors/__init__.py @@ -72,7 +72,7 @@ Error propagation for multiple ensembles (Markov chains with different simulatio Example: ```python obs1 = pe.Obs([samples1], ['ensemble1']) -obs2 = pe.Obs([samples1], ['ensemble2']) +obs2 = pe.Obs([samples2], ['ensemble2']) my_sum = obs1 + obs2 my_sum.details() @@ -88,7 +88,7 @@ my_sum.details() Example: ```python obs1 = pe.Obs([samples1], ['ensemble1|r01']) -obs2 = pe.Obs([samples1], ['ensemble1|r02']) +obs2 = pe.Obs([samples2], ['ensemble1|r02']) my_sum = obs1 + obs2 my_sum.details()