From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55360) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhc-00088d-Ki for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyha-0000v9-7v for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:20 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36982) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyha-0000uh-2u for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:18 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyha-0008K2-2K for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:18 -0500 Subject: [bug#39416] [PATCH 23/34] gnu: Add package r-kutils Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:15 +0100 Message-Id: <20200204135626.28261-23-ldb@leibniz-psychology.org> In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org> References: <20200204135626.28261-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39416@debbugs.gnu.org Cc: Lars-Dominik Braun * gnu/packages/cran.scm (r-kutils): New variable. --- gnu/packages/cran.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 0223b97a62..ebfa5d9529 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19881,3 +19881,38 @@ advanced package binaries available at . The software is described in Neale, Hunter, Pritikin, Zahery, Brick, Kirkpatrick, Estabrook, Bates, Maes, & Boker (2016) .") (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. We are eager to have community feedback about the variable key and +the vignette about it. In version 1.67, the function semTable() is deprecated. +We have proposed a new package of that name.") + (license license:gpl2))) -- 2.20.1