https://github.com/r-quantities/errors
Uncertainty Propagation for R Vectors
https://github.com/r-quantities/errors
cran error-propagation r r-package uncertainty
Last synced: 6 months ago
JSON representation
Uncertainty Propagation for R Vectors
- Host: GitHub
- URL: https://github.com/r-quantities/errors
- Owner: r-quantities
- License: other
- Created: 2017-04-18T13:23:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-01-19T16:55:58.000Z (9 months ago)
- Last Synced: 2025-03-29T01:14:17.234Z (7 months ago)
- Topics: cran, error-propagation, r, r-package, uncertainty
- Language: R
- Homepage: https://r-quantities.github.io/errors
- Size: 6.84 MB
- Stars: 49
- Watchers: 1
- Forks: 8
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
README
#
Measurement Errors for R
[](https://github.com/r-quantities/errors/actions)
[](https://app.codecov.io/gh/r-quantities/errors)
[](https://cran.r-project.org/package=errors)
[](https://cran.r-project.org/package=errors)
[](https://doi.org/10.32614/RJ-2018-075)The **errors** package provides support for measurement errors in R
vectors, matrices and arrays: automatic uncertainty propagation and
reporting.## Documentation
See [the initial blog post](https://www.enchufa2.es/archives/errors-0-0-1.html).
The package includes a vignette that is an up-to-date version of the following
R Journal publication, which should be used for citations:- Iñaki Ucar, Edzer Pebesma and Arturo Azcorra (2018). "Measurement Errors in R." _The R Journal_, 10 (2), 549--557. DOI: [10.32614/RJ-2018-075](https://doi.org/10.32614/RJ-2018-075)
## Installation
Install the release version from CRAN:
``` r
install.packages("errors")
```The installation from GitHub requires the
[remotes](https://cran.r-project.org/package=remotes) package.```r
# install.packages("remotes")
remotes::install_github("r-quantities/errors")
```