guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit a99250320dfa6d41440156d745c76ba21f327231
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Mar 12 09:52:20 2026 +0100
gnu: Add r-descr.
* gnu/packages/cran.scm (r-descr): New variable.
Change-Id: I5de2304cb863325e6f16059492f53d45a585edf4
---
gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 4e603f8c99..d3d4502acf 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -2854,6 +2854,31 @@ DESCRIPTION files. It is intended for packages that
create or manipulate
other packages.")
(license license:expat)))
+(define-public r-descr
+ (package
+ (name "r-descr")
+ (version "1.1.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "descr" version))
+ (sha256
+ (base32 "0yyxh1030pfjriwm8xfx9rp32cq7jfqlxq8mim1qvx06siah545c"))))
+ (properties `((upstream-name . "descr")))
+ (build-system r-build-system)
+ (propagated-inputs (list r-xtable))
+ (home-page "https://github.com/jalvesaq/descr")
+ (synopsis "Descriptive statistics")
+ (description
+ "This package provides weighted frequency and contingency tables of
+categorical variables and of the comparison of the mean value of a numerical
+variable by the levels of a factor, and methods to produce xtable objects of
+the tables and to plot them. There are also functions to facilitate the
+character encoding conversion of objects, to quickly convert fixed width files
+into CSV ones, and to export a @code{data.frame} to a text file with the
+necessary R and SPSS codes to reread the data.")
+ (license license:gpl2+)))
+
(define-public r-desctools
(package
(name "r-desctools")