diff options
author | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2020-02-04 14:09:10 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-02-22 20:42:12 +0100 |
commit | da9f63eeea22f705d9104464ba96b222f6f779ad (patch) | |
tree | a3e417e433387b391d01c41092188b077e260dc1 /gnu/packages/cran.scm | |
parent | d228795210de4535d817f8fbc696e82c0800e2f3 (diff) |
gnu: Add r-rpf.
* gnu/packages/cran.scm (r-rpf): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 1f778d73d1..2d00c11201 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19802,3 +19802,29 @@ doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan} package provides user-facing R functions to parse, compile, test, estimate, and analyze Stan models.") (license license:bsd-3))) + +(define-public r-rpf + (package + (name "r-rpf") + (version "0.62") + (source + (origin + (method url-fetch) + (uri (cran-uri "rpf" version)) + (sha256 + (base32 + "1vgqhwi676bi9jjxljnxblw65b5szjwbp87wnsabc11vfjzc9wki")))) + (properties `((upstream-name . "rpf"))) + (build-system r-build-system) + (propagated-inputs + `(("r-mvtnorm" ,r-mvtnorm) + ("r-rcppeigen" ,r-rcppeigen))) + (home-page "https://github.com/jpritikin/rpf") + (synopsis "Response probability functions") + (description + "The purpose of this package is to factor out logic and math common to +Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as +core support code suitable for more specialized IRT packages to build upon. +Complete access to optimized C functions is made available with +@code{R_RegisterCCallable()}.") + (license license:gpl3+))) |