guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add r-changepoint.


From: guix-commits
Subject: 02/02: gnu: Add r-changepoint.
Date: Thu, 16 Feb 2023 10:58:39 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 312f1f41d3f3f3e5d2c36ff46920c6dce1c21a17
Author: Navid Afkhami <navid.afkhami@mdc-berlin.de>
AuthorDate: Thu Feb 16 16:45:23 2023 +0100

    gnu: Add r-changepoint.
    
    * gnu/packages/cran.scm (r-changepoint): New variable.
    
    Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
---
 gnu/packages/cran.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index b4dc7822f2..6cea202519 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -283,6 +283,29 @@ simulating diversification models, dating trees, comparing 
trees, and
 reading/writing trees in Newick format.")
     (license license:gpl2+)))
 
+(define-public r-changepoint
+  (package
+    (name "r-changepoint")
+    (version "2.2.4")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "changepoint" version))
+              (sha256
+               (base32
+                "16v4p2c9zi2w3anwf5y9snl5dy1g5aidiqz1vn2p64qhfvg6yqxc"))))
+    (properties `((upstream-name . "changepoint")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-zoo))
+    (home-page "https://github.com/rkillick/changepoint/";)
+    (synopsis "Methods for changepoint detection")
+    (description
+     "Changepoint implements various mainstream and specialised changepoint
+methods.  These methods are suitable for finding single and multiple
+changepoints within data.  Many popular non-parametric and frequentist methods
+are included as well.")
+    ;; Any version of the GPL.
+    (license license:gpl3+)))
+
 (define-public r-collections
   (package
     (name "r-collections")



reply via email to

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