mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 14:50:25 +01:00
README updated
This commit is contained in:
parent
c538a58454
commit
4bf95da346
2 changed files with 8 additions and 8 deletions
12
README.md
12
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)
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue