diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-10-28 19:22:48 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-10-30 21:34:45 +0100 |
commit | 74cc74e43496f7534c6878137d32284df065ec75 (patch) | |
tree | 1490e1d6d63cb6a42a5fbe47ee2ea7c9f12eb658 /gnu/packages/cran.scm | |
parent | 319a80ce96f49e6750c80529dd5fbdf50594b343 (diff) | |
download | guix-74cc74e43496f7534c6878137d32284df065ec75.tar guix-74cc74e43496f7534c6878137d32284df065ec75.tar.gz |
gnu: Add r-summarytools.
* gnu/packages/cran.scm (r-summarytools): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index bed280ba51..a41448970a 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6960,3 +6960,33 @@ ways.") ;; This package is licensed under either the AGPLv3+ or the very rarely ;; used OSL 3.0. (license license:agpl3+))) + +(define-public r-summarytools + (package + (name "r-summarytools") + (version "0.8.8") + (source + (origin + (method url-fetch) + (uri (cran-uri "summarytools" version)) + (sha256 + (base32 + "0z836m6ib9bznwcawn6xf8gck05ydxwi3bx4jbrbyqql4kci8zwb")))) + (build-system r-build-system) + (propagated-inputs + `(("r-htmltools" ,r-htmltools) + ("r-lubridate" ,r-lubridate) + ("r-matrixstats" ,r-matrixstats) + ("r-pander" ,r-pander) + ("r-pryr" ,r-pryr) + ("r-rapportools" ,r-rapportools) + ("r-rcurl" ,r-rcurl))) + (home-page "https://github.com/dcomtois/summarytools") + (synopsis "Tools to quickly and neatly summarize data") + (description + "This package provides tools for data frame summaries, cross-tabulations, +weight-enabled frequency tables and common univariate statistics in concise +tables available in a variety of formats (plain ASCII, Markdown and HTML). A +good point-of-entry for exploring data, both for experienced and new R +users.") + (license license:gpl2))) |