README updated

This commit is contained in:
Fabian Joswig 2021-11-09 12:08:50 +00:00
parent c538a58454
commit 4bf95da346
2 changed files with 8 additions and 8 deletions

View file

@ -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)

View file

@ -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()