rekado pushed a commit to branch master
in repository guix.
commit c9487dfadce4ba4cc03397871b4fb560f7e9653f
Author: Ricardo Wurmus <[email protected]>
Date: Fri May 10 12:50:31 2019 +0200
gnu: Add r-plot3d.
* gnu/packages/cran.scm (r-plot3d): 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 564b6fd..d00a4b3 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -14314,3 +14314,25 @@ and model output.")
web-based tool for analyzing gene sets and returns any enrichment of common
annotated biological functions.")
(license license:gpl2+)))
+
+(define-public r-plot3d
+ (package
+ (name "r-plot3d")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "plot3D" version))
+ (sha256
+ (base32
+ "0chn70fqwyca8lbnjnpbcj08ni0dfbax2gjmzhk2c4w72c04mzpn"))))
+ (properties `((upstream-name . "plot3D")))
+ (build-system r-build-system)
+ (propagated-inputs `(("r-misc3d" ,r-misc3d)))
+ (home-page "https://cran.r-project.org/web/packages/plot3D")
+ (synopsis "Plot multi-dimensional data")
+ (description
+ "This package provides functions for viewing 2D and 3D data, including
+perspective plots, slice plots, surface plots, scatter plots, etc. It
+includes data sets from oceanography.")
+ (license license:gpl3+)))