guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

13/14: gnu: Add r-smoother.


From: Ricardo Wurmus
Subject: 13/14: gnu: Add r-smoother.
Date: Thu, 8 Mar 2018 17:32:40 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit be815dbdda155e1e920667a1c34bf264cb20f5b3
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Mar 8 23:29:53 2018 +0100

    gnu: Add r-smoother.
    
    * gnu/packages/cran.scm (r-smoother): New variable.
---
 gnu/packages/cran.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 81b791d..4e3a036 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -3169,3 +3169,26 @@ regression and information measures are implemented.")
     ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
     ;; later can be used.
     (license license:gpl2+)))
+
+(define-public r-smoother
+  (package
+    (name "r-smoother")
+    (version "1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "smoother" version))
+       (sha256
+        (base32
+         "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-ttr" ,r-ttr)))
+    (home-page "http://cran.r-project.org/web/packages/smoother";)
+    (synopsis "Functions relating to the smoothing of numerical data")
+    (description
+     "This package provides a collection of methods for smoothing numerical
+data, commencing with a port of the Matlab gaussian window smoothing function.
+In addition, several functions typically used in smoothing of financial data
+are included.")
+    (license license:gpl2)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]