guix-commits
[Top][All Lists]
Advanced

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

09/14: gnu: Add r-abind.


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

rekado pushed a commit to branch master
in repository guix.

commit 94e46cabc1222b82f1cef091fd955b839f2493d7
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Mar 8 23:16:36 2018 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index c8a4216..e7e49fd 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -3062,3 +3062,25 @@ data frame.  The @code{sqldf} or @code{read.csv.sql} 
functions can also be
 used to read filtered files into R even if the original files are larger than
 R itself can handle.")
     (license license:gpl2)))
+
+(define-public r-abind
+  (package
+    (name "r-abind")
+    (version "1.4-5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "abind" version))
+       (sha256
+        (base32
+         "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
+    (build-system r-build-system)
+    (home-page "http://cran.r-project.org/web/packages/abind/";)
+    (synopsis "Combine multidimensional arrays")
+    (description
+     "This package provides tools to combine multidimensional arrays into a
+single array.  This is a generalization of @code{cbind} and @code{rbind}.  It
+works with vectors, matrices, and higher-dimensional arrays.  It also provides
+the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
+extracting and replacing data in arrays.")
+    (license license:lgpl2.0+)))



reply via email to

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