diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-11-24 14:03:26 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-11-25 14:05:32 +0100 |
commit | 46130b7bee382c6f9de8f80fb0f067253fcd9ca9 (patch) | |
tree | 4e390de30687eb529902847321623944bd0c89a7 /gnu/packages/statistics.scm | |
parent | aca2bf51b767bfdc152896430f83b7c1124c346d (diff) | |
download | guix-46130b7bee382c6f9de8f80fb0f067253fcd9ca9.tar.gz |
gnu: r-scales: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-scales): Move variable from here... * gnu/packages/cran.scm (r-scales): ...to here.
Diffstat (limited to 'gnu/packages/statistics.scm')
-rw-r--r-- | gnu/packages/statistics.scm | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 655e404b73..ea91126c74 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1108,32 +1108,6 @@ the input of another.") using just two functions: melt and dcast (or acast).") (license license:expat))) -(define-public r-scales - (package - (name "r-scales") - (version "1.0.0") - (source - (origin - (method url-fetch) - (uri (cran-uri "scales" version)) - (sha256 - (base32 "0353dkh3d7x78463c6ds80hcml59lrqwr8rlv82a8dnkxla4l7qc")))) - (build-system r-build-system) - (propagated-inputs - `(("r-labeling" ,r-labeling) - ("r-munsell" ,r-munsell) - ("r-rcolorbrewer" ,r-rcolorbrewer) - ("r-rcpp" ,r-rcpp) - ("r-r6" ,r-r6) - ("r-viridislite" ,r-viridislite))) - (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))) - (define-public r-ggplot2 (package (name "r-ggplot2") |