mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add r-actuar.
* gnu/packages/cran.scm (r-actuar): New variable.
This commit is contained in:
parent
1830e0383b
commit
7faa05377e
1 changed files with 28 additions and 0 deletions
|
@ -18155,3 +18155,31 @@ (define-public r-expint
|
||||||
The package also gives easy access to the underlying C routines through an
|
The package also gives easy access to the underlying C routines through an
|
||||||
API; see the package vignette for details.")
|
API; see the package vignette for details.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public r-actuar
|
||||||
|
(package
|
||||||
|
(name "r-actuar")
|
||||||
|
(version "2.3-3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "actuar" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0aw3hlan5y22mdqk1wvnw9ksqhwp4yy5hi0dpv21p7s0hyxhphih"))))
|
||||||
|
(properties `((upstream-name . "actuar")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs `(("r-expint" ,r-expint)))
|
||||||
|
(home-page "https://gitlab.com/vigou3/actuar")
|
||||||
|
(synopsis "Actuarial functions and heavy tailed distributions")
|
||||||
|
(description
|
||||||
|
"This package provides functions and data sets for actuarial science:
|
||||||
|
modeling of loss distributions; risk theory and ruin theory; simulation of
|
||||||
|
compound models, discrete mixtures and compound hierarchical models;
|
||||||
|
credibility theory. It boasts support for many additional probability
|
||||||
|
distributions to model insurance loss amounts and loss frequency: 19
|
||||||
|
continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
|
||||||
|
distribution; zero-truncated and zero-modified extensions of the standard
|
||||||
|
discrete distributions. It also supports phase-type distributions commonly
|
||||||
|
used to compute ruin probabilities.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue