From: Raoul Jean Pierre Bonnal <[email protected]>
* gnu/packages/statistics.scm (r-lme4): New variable.
---
gnu/packages/statistics.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 969b557..7afce82 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4659,3 +4659,29 @@ based on an interface to Fortran implementations by M.
J. D. Powell.")
"This package provides misc functions for training and plotting
classification and regression models.")
(license license:gpl2+)))
+
+(define-public r-lme4
+ (package
+ (name "r-lme4")
+ (version "1.1-12")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "lme4" version))
+ (sha256
+ (base32
+ "0j60l5kgx1wvw2wm3jwfqwi63hammaq8gfcxzwa4h552likvaxi9"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-minqa" ,r-minqa)
+ ("r-nloptr" ,r-nloptr)
+ ("r-rcpp" ,r-rcpp)
+ ("r-rcppeigen" ,r-rcppeigen)))
+ (home-page "http://cran.r-project.org/web/packages/lme4")
+ (synopsis "Linear mixed-effects models using eigen and S4")
+ (description
+ "This package provides fit linear and generalized linear mixed-effects
models.
+The models and their components are represented using S4 classes and methods.
+The core computational algorithms are implemented using the Eigen C++ library
for
+numerical linear algebra and RcppEigen glue.")
+ (license license:gpl2+)))
--
1.9.1