gnu: Add r-plot3d.

* gnu/packages/cran.scm (r-plot3d): New variable.
master
Ricardo Wurmus 2019-05-10 12:50:31 +02:00
parent 70debac5f1
commit c9487dfadc
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 22 additions and 0 deletions

View File

@ -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+)))