diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-11-26 18:05:39 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-03 16:59:49 +0100 |
commit | 16632b6cdbb4258da8cdabd4097147abb5f09d6e (patch) | |
tree | f6a35014c839d7951b089c22fa15a359d57906a5 /gnu/packages/cran.scm | |
parent | ed6e2124f0944999e0ac8abf89daaaf86dac4a7f (diff) | |
download | guix-16632b6cdbb4258da8cdabd4097147abb5f09d6e.tar.gz guix-16632b6cdbb4258da8cdabd4097147abb5f09d6e.zip |
gnu: Add r-gmisc.
* gnu/packages/cran.scm (r-gmisc): New variable.
Change-Id: I54c7b6d5cb3c375a6fef1418654f552f3956d493
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index c9d0ef0557..ae5c31c18e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -23579,6 +23579,45 @@ preparing, executing, and processing HTTP requests.") "This package provides an R interface to Google's BigQuery database.") (license license:gpl3))) +(define-public r-gmisc + (package + (name "r-gmisc") + (version "3.0.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "Gmisc" version)) + (sha256 + (base32 "1s8gkqg54622xhsmhl7n5pff2b6xfij111m7h3i4inzfjfmziq43")))) + (properties `((upstream-name . "Gmisc"))) + (build-system r-build-system) + (propagated-inputs (list r-abind + r-checkmate + r-forestplot + r-glue + r-hmisc + r-htmltable + r-knitr + r-lattice + r-lubridate + r-magrittr + r-rcpp + r-rlang + r-rmarkdown + r-stringr + r-xml + r-yaml)) + (native-inputs (list r-dplyr r-knitr r-testthat)) + (home-page "https://gforge.se") + (synopsis "Descriptive statistics, transition plots, and more") + (description + "This package provides tools for making the descriptive \"Table 1\" used +in medical articles, a transition plot for showing changes between +categories (also known as a Sankey diagram), flow charts by extending the grid +package, a method for variable selection based on the SVD, Bezier lines with +arrows complementing the ones in the grid package, and more.") + (license license:gpl3+))) + (define-public r-gmp (package (name "r-gmp") |