gnu: Add r-mgcv.

* gnu/packages/statistics.scm (r-mgcv): New variable.
This commit is contained in:
Ben Woodcroft 2016-06-16 22:07:49 +10:00
parent de682e6f0f
commit 0846620803
No known key found for this signature in database
GPG key ID: E44DCCD146E0CCF4

View file

@ -378,6 +378,27 @@ (define-public r-rcpp
'citation(\"Rcpp\")' for details on these last two.")
(license license:gpl2+)))
(define-public r-mgcv
(package
(name "r-mgcv")
(version "1.8-12")
(source
(origin
(method url-fetch)
(uri (cran-uri "mgcv" version))
(sha256
(base32
"1khzy36nn6xbnzqfc2953ng0sv8w91mns1ymhibaqn1150x1qid0"))))
(build-system r-build-system)
(home-page "http://cran.r-project.org/web/packages/mgcv")
(synopsis "Mixed generalised additive model computation")
(description
"GAMs, GAMMs and other generalized ridge regression with multiple smoothing
parameter estimation by GCV, REML or UBRE/AIC. The library includes a
@code{gam()} function, a wide variety of smoothers, JAGS support and
distributions beyond the exponential family.")
(license license:gpl2+)))
(define-public r-permute
(package
(name "r-permute")