soerp icon indicating copy to clipboard operation
soerp copied to clipboard

Second Order ERror Propagation

Results 8 soerp issues
Sort by recently updated
recently updated
newest added

I was wondering if there was, apart from the docstrings, some documentation or technical explanation about how the package works, from a mathematical point of view ? Or maybe point...

Github supports CITATION.cff files, so I was thinking you might want to add one: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-citation-files

Hello, I am trying to estimate the error of a formula, and the code goes to a dead loop. After some attempts I find the problem lies in the (a**x)...

Your `__init__.py` file references the Weibull distribution on line 620 but in reality calls the exponentiated Weibull distribution (exponweib function) from scipy.stats on line 1035. This can be confusing to...

When trying to use error_components there are some dictionary errors. These result from Python 3 removing the 'has_key' method of dictionary objects. They can be corrected by replacing 'dictionary.has_key(key)' with...

The constructor for triangular distributions, `Tri(a, b, c)` is calling `scipy.stats.triang` as follows: `return uv(rv=ss.triang(c, loc=a, scale=b-a), tag=tag)` where `a` and `b` are respectively the min and max of the...

It is currently not possible to set the "usual" `loc` and `scale` params on the log scale for the LogNormal distribution. `loc` is usually 0, and `scale` should usually set...

Hi there, I was just wondering if there is an easy way to use the result of soerp operations as random variables. For example ``` x=N(0,1) y=N(1,2) z=x+y ``` Then,...