gnu: Add r-lpme.

* gnu/packages/cran.scm (r-lpme): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Aniket Patil 2020-12-14 22:00:47 -05:00 committed by Leo Famulari
parent 6b5c04034d
commit 1c6789464a
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -25234,6 +25234,35 @@ (define-public r-locpol
kernel estimators.")
(license license:gpl2+)))
(define-public r-lpme
(package
(name "r-lpme")
(version "1.1.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "lpme" version))
(sha256
(base32
"0si90nkgl8bqk8yvd2igdsrngiwqh8891072pfpzipifnd0f5448"))))
(properties `((upstream-name . "lpme")))
(build-system r-build-system)
(propagated-inputs
`(("r-decon" ,r-decon)
("r-flexmix" ,r-flexmix)
("r-locpol" ,r-locpol)
("r-rcpp" ,r-rcpp)
("r-rcpparmadillo" ,r-rcpparmadillo)))
(home-page
"https://cran.r-project.org/web/packages/lpme/")
(synopsis "Nonparametric Estimation of Measurement Error Models")
(description
"Provide nonparametric methods for mean regression model,
modal regression and conditional density estimation in the
presence/absence of measurement error. Bandwidth selection is
also provided for each method.")
(license license:gpl2+)))
(define-public r-aws-signature
(package
(name "r-aws-signature")