diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-03-12 09:52:48 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-02 07:37:06 +0200 |
| commit | c0c26f5aafd0f5ffe449212ba2fc7430bb9e4539 (patch) | |
| tree | d982aa4eed400ff463227a64588bf53108ad334b /gnu/packages | |
| parent | 105f2557027ff10d31d7afe1ca7b8ca4d9877ed9 (diff) | |
gnu: Add r-tables.
* gnu/packages/cran.scm (r-tables): New variable.
Change-Id: Ic247e02577ce0dfadc4f8628f34f0ab454f621b0
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d3d4502acf4..f194dd41751 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -12847,6 +12847,28 @@ dissimilarity analysis. Most of its multivariate tools can be used for other data types as well.") (license license:gpl2+))) +(define-public r-tables + (package + (name "r-tables") + (version "0.9.33") + (source + (origin + (method url-fetch) + (uri (cran-uri "tables" version)) + (sha256 + (base32 "0vzja9g5w8afr68q0nx8szl7zx3f8z7dwzf6zhc0lzysrsm8g4kv")))) + (properties `((upstream-name . "tables"))) + (build-system r-build-system) + (propagated-inputs (list r-htmltools r-knitr)) + (native-inputs (list r-hmisc r-kableextra r-knitr r-magrittr r-rmarkdown)) + (home-page "https://dmurdoch.github.io/tables/") + (synopsis "Formula-driven table generation") + (description + "This package computes and displays complex tables of summary statistics. +Output may be in @code{LaTeX}, HTML, plain text, or an R matrix for further +processing.") + (license license:gpl2))) + (define-public r-tailor (package (name "r-tailor") |
