[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: Add r-lpme.
From: |
guix-commits |
Subject: |
03/03: gnu: Add r-lpme. |
Date: |
Tue, 15 Dec 2020 00:35:31 -0500 (EST) |
lfam pushed a commit to branch master
in repository guix.
commit 1c6789464a95e98a795be84cc8f1811d411712ce
Author: Aniket Patil <aniket112.patil@gmail.com>
AuthorDate: Mon Dec 14 22:00:47 2020 -0500
gnu: Add r-lpme.
* gnu/packages/cran.scm (r-lpme): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
---
gnu/packages/cran.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 7ff0c93..9c6ee08 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -25234,6 +25234,35 @@ also density. It comprises several different
utilities to handle
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")