>From 5576d64e965947d1ec0d4bebc7aef84ea4e35f16 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:10:25 +0100 Subject: [v2 23/34] gnu: Add package r-kutils * gnu/packages/cran.scm (r-kutils): New variable. --- gnu/packages/cran.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 310089e81f..8cab74e4b1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19887,3 +19887,36 @@ models and consists of a library of functions and optimizers that allow you to quickly and flexibly define an SEM model and estimate parameters given observed data.") (license license:asl2.0))) + +(define-public r-kutils + (package + (name "r-kutils") + (version "1.69") + (source + (origin + (method url-fetch) + (uri (cran-uri "kutils" version)) + (sha256 + (base32 + "12pg26a85h0jxlfcyai68dbh4bq1gnq8v1ngi8k9qvafbrpc6gx8")))) + (properties `((upstream-name . "kutils"))) + (build-system r-build-system) + (propagated-inputs + `(("r-foreign" ,r-foreign) + ("r-lavaan" ,r-lavaan) + ("r-openxlsx" ,r-openxlsx) + ("r-plyr" ,r-plyr) + ("r-runit" ,r-runit) + ("r-xtable" ,r-xtable))) + (home-page + "https://cran.r-project.org/package=kutils") + (synopsis "Project management tools") + (description + "Tools for data importation, recoding, and inspection that are used at +the University of Kansas Center for Research Methods and Data Analysis. There +are functions to create new project folders, R code templates, create uniquely +named output directories, and to quickly obtain a visual summary for each +variable in a data frame. The main feature here is the systematic +implementation of the \"variable key\" framework for data importation and +recoding.") + (license license:gpl2))) -- 2.20.1