summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-03-12 09:52:20 +0100
committerRicardo Wurmus <rekado@elephly.net>2026-04-02 07:37:06 +0200
commit105f2557027ff10d31d7afe1ca7b8ca4d9877ed9 (patch)
tree90e0556546273bea85e4f3d732f51f61fd6f374b
parent02f4332dc0dc27447dc8c5a5aac7c5dabc28bae4 (diff)
gnu: Add r-descr.
* gnu/packages/cran.scm (r-descr): New variable. Change-Id: I5de2304cb863325e6f16059492f53d45a585edf4
-rw-r--r--gnu/packages/cran.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 4e603f8c995..d3d4502acf4 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")