forked from alexpghayes/distributions3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
executable file
·86 lines (59 loc) · 3.18 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%",
message = FALSE,
warning = FALSE
)
```
# distributions3
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/distributions3)](https://cran.r-project.org/package=distributions3)
[![R-CMD-check](https://github.com/alexpghayes/distributions3/workflows/R-CMD-check/badge.svg)](https://github.com/alexpghayes/distributions3/actions)
[![Codecov test coverage](https://codecov.io/gh/alexpghayes/distributions3/branch/main/graph/badge.svg)](https://app.codecov.io/gh/alexpghayes/distributions3?branch=main)
<!-- badges: end -->
`distributions3`, inspired by the [eponynmous Julia package](https://github.com/JuliaStats/Distributions.jl), provides a generic function interface to probability distributions. `distributions3` has two goals:
1. Replace the `rnorm()`, `pnorm()`, etc, family of functions with S3 methods for distribution objects
2. Be extremely well documented and friendly for students in intro stat classes.
The main generics are:
- `random()`: Draw samples from a distribution.
- `pdf()`: Evaluate the probability density (or mass) at a point.
- `cdf()`: Evaluate the cumulative probability up to a point.
- `quantile()`: Determine the quantile for a given probability. Inverse of `cdf()`.
## Installation
You can install `distributions3` with:
``` r
install.packages("distributions3")
```
You can install the development version with:
``` r
install.packages("devtools")
devtools::install_github("alexpghayes/distributions3")
```
## Basic Usage
The basic usage of `distributions3` looks like:
```{r}
library("distributions3")
X <- Bernoulli(0.1)
random(X, 10)
pdf(X, 1)
cdf(X, 0)
quantile(X, 0.5)
```
Note that `quantile()` **always** returns lower tail probabilities. If you aren't sure what this means, please read the last several paragraphs of `vignette("one-sample-z-confidence-interval")` and have a gander at the plot.
## Contributing
If you are interested in contributing to `distributions3`, please reach out on Github! We are happy to review PRs contributing bug fixes.
Please note that `distributions3` is released with a
[Contributor Code of Conduct](https://alexpghayes.github.io/distributions3/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
## Related work
For a comprehensive overview of the many packages providing various distribution related functionality see the [CRAN Task View](https://cran.r-project.org/view=Distributions).
- [`distributional`](https://cran.r-project.org/package=distributional) provides distribution objects as vectorized S3 objects
- [`distr6`](https://cran.r-project.org/package=distr6) builds on `distr`, but uses R6 objects
- [`distr`](https://cran.r-project.org/package=distr) is quite similar to `distributions`, but uses S4 objects and is less focused on documentation.
- [`fitdistrplus`](https://cran.r-project.org/package=fitdistrplus) provides extensive functionality for fitting various distributions but does not treat distributions themselves as objects