diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-11-07 17:23:10 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-11-07 23:32:45 +0100 |
commit | 9232cac4107a74f15d2a3ac46ce79a641bcad0a4 (patch) | |
tree | a4e9ed7d2ed2729295fe2aaf0ef535b126007e61 /gnu/packages/cran.scm | |
parent | 3a22732cd8b44a29bcfa3f8d1df41b157b135c27 (diff) | |
download | guix-9232cac4107a74f15d2a3ac46ce79a641bcad0a4.tar guix-9232cac4107a74f15d2a3ac46ce79a641bcad0a4.tar.gz |
gnu: Add r-vioplot.
* gnu/packages/cran.scm (r-vioplot): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index f6d436a056..c9659c6cd0 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -1402,3 +1402,23 @@ Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford University Press. It provides smoothing methods for nonparametric regression and density estimation") (license license:gpl2+))) + +(define-public r-vioplot + (package + (name "r-vioplot") + (version "0.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "vioplot" version)) + (sha256 + (base32 + "16wkb26kv6qr34hv5zgqmgq6zzgysg9i78pvy2c097lr60v087v0")))) + (build-system r-build-system) + (propagated-inputs `(("r-sm" ,r-sm))) + (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler") + (synopsis "Violin plot") + (description + "This package provides a violin plot, which is a combination of a box +plot and a kernel density plot.") + (license license:bsd-3))) |