Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 days 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-01-19T16:55:58.000Z (19 days ago)
- Last Synced: 2025-01-26T16:06:21.123Z (12 days 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: 2
- 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
[![Build Status](https://github.com/r-quantities/errors/workflows/build/badge.svg)](https://github.com/r-quantities/errors/actions)
[![Coverage Status](https://codecov.io/gh/r-quantities/errors/branch/master/graph/badge.svg)](https://app.codecov.io/gh/r-quantities/errors)
[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/errors)](https://cran.r-project.org/package=errors)
[![Downloads](https://cranlogs.r-pkg.org/badges/errors)](https://cran.r-project.org/package=errors)
[![DOI](https://img.shields.io/badge/doi-10.32614/RJ--2018--075-informational.svg)](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")
```