https://github.com/twolodzko/extradistr
Additional univariate and multivariate distributions
https://github.com/twolodzko/extradistr
c-plus-plus c-plus-plus-11 distribution multivariate-distributions probability r random-generation rcpp statistics
Last synced: about 1 year ago
JSON representation
Additional univariate and multivariate distributions
- Host: GitHub
- URL: https://github.com/twolodzko/extradistr
- Owner: twolodzko
- Created: 2016-04-03T19:51:19.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2025-03-05T19:27:49.000Z (over 1 year ago)
- Last Synced: 2025-04-09T20:08:00.494Z (about 1 year ago)
- Topics: c-plus-plus, c-plus-plus-11, distribution, multivariate-distributions, probability, r, random-generation, rcpp, statistics
- Language: C++
- Homepage:
- Size: 56.7 MB
- Stars: 53
- Watchers: 2
- Forks: 11
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
Awesome Lists containing this project
README
# Warning: this repository is not activelly maintained anymore
If you have a feature request or bug report, feel free to send a pull request.
---
Density, distribution function, quantile function and random
generation for a number of univariate and multivariate distributions.
This package follows naming convention that is consistent with base R,
where density (or probability mass) functions, distribution functions,
quantile functions and random generation functions names are followed by
`d`\*, `p`\*, `q`\*, and `r`\* prefixes.
Behaviour of the functions mimics the base R, where for
invalid parameters `NaN`'s are returned, while
for values beyond function support 0's are returned
(e.g. for non-integers in discrete distributions, or for
negative values in functions with non-negative support).
All the functions vectorized and coded in C++11 using [Rcpp](https://www.rcpp.org/).