Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mitchelloharawild/distributional
Vectorised distributions for R
https://github.com/mitchelloharawild/distributional
probability-distribution r statistics vctrs
Last synced: 22 days ago
JSON representation
Vectorised distributions for R
- Host: GitHub
- URL: https://github.com/mitchelloharawild/distributional
- Owner: mitchelloharawild
- License: gpl-3.0
- Created: 2019-10-01T00:07:06.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T06:27:17.000Z (about 2 months ago)
- Last Synced: 2024-09-19T17:11:52.251Z (about 2 months ago)
- Topics: probability-distribution, r, statistics, vctrs
- Language: R
- Homepage: https://pkg.mitchelloharawild.com/distributional
- Size: 3.68 MB
- Stars: 96
- Watchers: 7
- Forks: 15
- Open Issues: 35
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
- jimsghstars - mitchelloharawild/distributional - Vectorised distributions for R (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
set.seed(0)
```# distributional
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![R-CMD-check](https://github.com/mitchelloharawild/distributional/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/mitchelloharawild/distributional/actions/workflows/R-CMD-check.yaml)[![CRAN status](https://www.r-pkg.org/badges/version/distributional)](https://CRAN.R-project.org/package=distributional)
![Download count](https://cranlogs.r-pkg.org/badges/last-month/distributional)The distributional package allows distributions to be used in a vectorised context. It provides methods which are minimal wrappers to the standard d, p, q, and r distribution functions which are applied to each distribution in the vector. Additional distributional statistics can be computed, including the `mean()`, `median()`, `variance()`, and intervals with `hilo()`.
The distributional nature of a model's predictions is often understated, with default output of prediction methods usually only producing point predictions. Some R packages (such as [forecast](https://CRAN.R-project.org/package=forecast)) further emphasise uncertainty by producing point forecasts and intervals by default, however the user's ability to interact with them is limited. This package vectorises distributions and provides methods for working with them, making distributions compatible with prediction outputs of modelling functions. These vectorised distributions can be illustrated with [ggplot2](https://CRAN.R-project.org/package=ggplot2) using the [ggdist](https://CRAN.R-project.org/package=ggdist) package, providing further opportunity to visualise the uncertainty of predictions and teach distributional theory.
## Installation
You can install the released version of distributional from [CRAN](https://CRAN.R-project.org/package=distributional) with:
```{r, eval = FALSE}
install.packages("distributional")
```The development version can be installed from [GitHub](https://github.com/mitchelloharawild/distributional) with:
```{r, eval = FALSE}
# install.packages("remotes")
remotes::install_github("mitchelloharawild/distributional")
```## Examples
Distributions are created using `dist_*()` functions. A list of included distribution shapes can be found here:
```{r object}
library(distributional)
my_dist <- c(dist_normal(mu = 0, sigma = 1), dist_student_t(df = 10))
my_dist
```The standard four distribution functions in R are usable via these generics:
```{r}
density(my_dist, 0) # c(dnorm(0, mean = 0, sd = 1), dt(0, df = 10))
cdf(my_dist, 5) # c(pnorm(5, mean = 0, sd = 1), pt(5, df = 10))
quantile(my_dist, 0.1) # c(qnorm(0.1, mean = 0, sd = 1), qt(0.1, df = 10))
generate(my_dist, 10) # list(rnorm(10, mean = 0, sd = 1), rt(10, df = 10))
```You can also compute intervals using `hilo()`
```{r hilo}
hilo(my_dist, 0.95)
```Additionally, some distributions may support other methods such as mathematical operations and summary measures. If the methods aren't supported, a transformed distribution will be created.
```{r math}
my_dist
my_dist*3 + 2
mean(my_dist)
variance(my_dist)
```You can also visualise the distribution(s) using the [ggdist](https://mjskay.github.io/ggdist/) package.
```{r plot}
library(ggdist)
library(ggplot2)df <- data.frame(
name = c("Gamma(2,1)", "Normal(5,1)", "Mixture"),
dist = c(dist_gamma(2,1), dist_normal(5,1),
dist_mixture(dist_gamma(2,1), dist_normal(5, 1), weights = c(0.4, 0.6)))
)ggplot(df, aes(y = factor(name, levels = rev(name)))) +
stat_dist_halfeye(aes(dist = dist)) +
labs(title = "Density function for a mixture of distributions", y = NULL, x = NULL)
```## Related work
There are several packages which unify interfaces for distributions in R:
* stats provides functions to work with possibly multiple distributions (comparisons made below).
* [distributions3](https://cran.r-project.org/package=distributions3) represents singular distributions using S3, with particularly nice documentation. This package makes use of some code and documentation from this package.
* [distr](https://cran.r-project.org/package=distr) represents singular distributions using S4.
* [distr6](https://cran.r-project.org/package=distr6) represents singular distributions using R6.
* Many more in the [CRAN task view](https://cran.r-project.org/view=Distributions)This package differs from the above libraries by storing the distributions in a vectorised format. It does this using [vctrs](https://vctrs.r-lib.org/), so it should play nicely with the tidyverse (try putting distributions into a tibble!).