guix-commits
[Top][All Lists]
Advanced

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

12/20: gnu: Add r-tweenr.


From: guix-commits
Subject: 12/20: gnu: Add r-tweenr.
Date: Wed, 27 Mar 2019 11:17:31 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 91e06bedf8ae43722c8c8b50816fa4e90593932e
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Mar 27 15:44:25 2019 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 102a223..b0fb5ec 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -13194,3 +13194,30 @@ efficient lookups, similar in purpose to hash tables.  
This package provides
 an implementation of radix trees for use in R programming and in developing
 packages with Rcpp.")
     (license license:expat)))
+
+(define-public r-tweenr
+  (package
+    (name "r-tweenr")
+    (version "1.0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "tweenr" version))
+       (sha256
+        (base32
+         "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-farver" ,r-farver)
+       ("r-magrittr" ,r-magrittr)
+       ("r-rcpp" ,r-rcpp)
+       ("r-rlang" ,r-rlang)))
+    (home-page "https://github.com/thomasp85/tweenr";)
+    (synopsis "Interpolate data for smooth animations")
+    (description
+     "In order to create smooth animation between states of data, tweening is
+necessary.  This package provides a range of functions for creating tweened
+data that can be used as basis for animation.  Furthermore it adds a number of
+vectorized interpolaters for common R data types such as numeric, date and
+color.")
+    (license license:expat)))



reply via email to

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