guix-commits
[Top][All Lists]
Advanced

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

02/24: gnu: Add r-blob.


From: Roel Janssen
Subject: 02/24: gnu: Add r-blob.
Date: Tue, 1 Aug 2017 18:34:14 -0400 (EDT)

roelj pushed a commit to branch master
in repository guix.

commit 796237a9a4f30b1106e7c6c7a505fbc61e59b163
Author: Roel Janssen <address@hidden>
Date:   Wed Aug 2 00:22:33 2017 +0200

    gnu: Add r-blob.
    
    * gnu/packages/statistics.scm (r-blob): New variable.
---
 gnu/packages/statistics.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 9d17df5..47a04ce 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2605,6 +2605,27 @@ options on a per-package basis.  Options set by a given 
package only apply to
 that package, other packages are unaffected.")
     (license license:expat)))
 
+(define-public r-blob
+  (package
+    (name "r-blob")
+    (version "1.1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "blob" version))
+              (sha256
+               (base32
+                "05pazzcyz3c3vd2l70zq9cf172cgjff4dnf419zigfnxycyn1mhn"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-tibble" ,r-tibble)))
+    (home-page "https://github.com/hadley/blob";)
+    (synopsis "Simple S3 Class for representing vectors of binary data")
+    (description "Raw vectors in R are useful for storing a single binary
+object.  What if you want to put a vector of them in a data frame?  The blob
+package provides the blob object, a list of raw vectors, suitable for use as
+a column in data frame.")
+    (license license:gpl3+)))
+
 (define-public r-rsqlite
   (package
     (name "r-rsqlite")



reply via email to

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