[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/16: gnu: Add r-scales.
From: |
Ricardo Wurmus |
Subject: |
15/16: gnu: Add r-scales. |
Date: |
Thu, 03 Sep 2015 12:32:31 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit a11ee478a684e7a18f1a3eb51e3164645129af75
Author: Ricardo Wurmus <address@hidden>
Date: Mon Aug 31 15:36:22 2015 +0200
gnu: Add r-scales.
* gnu/packages/statistics.scm (r-scales): New variable.
---
gnu/packages/statistics.scm | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 5b662a1..b10ebdc 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -429,3 +429,30 @@ the input of another.")
"Reshape2 is an R library to flexibly restructure and aggregate data
using just two functions: melt and dcast (or acast).")
(license license:expat)))
+
+(define-public r-scales
+ (package
+ (name "r-scales")
+ (version "0.2.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cran/src/contrib/scales_"
+ version ".tar.gz"))
+ (sha256
+ (base32 "12xrmn1vh64dl46bq7n7pa427aicb2ifjrby9in3m32nyvir0kac"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-dichromat" ,r-dichromat)
+ ("r-labeling" ,r-labeling)
+ ("r-munsell" ,r-munsell)
+ ("r-plyr" ,r-plyr)
+ ("r-rcolorbrewer" ,r-rcolorbrewer)
+ ("r-rcpp" ,r-rcpp)))
+ (home-page "https://github.com/hadley/scales")
+ (synopsis "Scale functions for visualization")
+ (description
+ "This package provides graphical scales that map data to aesthetics, and
+provides methods for automatically determining breaks and labels for axes and
+legends.")
+ (license license:expat)))
- 04/16: gnu: Add r-gtable., (continued)
- 04/16: gnu: Add r-gtable., Ricardo Wurmus, 2015/09/03
- 14/16: gnu: Add r-reshape2., Ricardo Wurmus, 2015/09/03
- 11/16: gnu: Add r-rcolorbrewer., Ricardo Wurmus, 2015/09/03
- 10/16: gnu: Add r-proto., Ricardo Wurmus, 2015/09/03
- 16/16: gnu: Add r-ggplot2., Ricardo Wurmus, 2015/09/03
- 03/16: gnu: Add r-digest., Ricardo Wurmus, 2015/09/03
- 07/16: gnu: Add r-munsell., Ricardo Wurmus, 2015/09/03
- 08/16: gnu: Add r-rcpp., Ricardo Wurmus, 2015/09/03
- 12/16: gnu: Add r-stringi., Ricardo Wurmus, 2015/09/03
- 13/16: gnu: Add r-stringr., Ricardo Wurmus, 2015/09/03
- 15/16: gnu: Add r-scales.,
Ricardo Wurmus <=