From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55337) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhc-00087C-1G for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyha-0000wW-Jy for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:19 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36983) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyha-0000w4-Fl 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-0008K9-Ew for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:18 -0500 Subject: [bug#39416] [PATCH 24/34] gnu: Add package r-rockchalk Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:16 +0100 Message-Id: <20200204135626.28261-24-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-rockchalk): New variable. --- gnu/packages/cran.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ebfa5d9529..2df2f90d37 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19916,3 +19916,37 @@ 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))) + +(define-public r-rockchalk + (package + (name "r-rockchalk") + (version "1.8.144") + (source + (origin + (method url-fetch) + (uri (cran-uri "rockchalk" version)) + (sha256 + (base32 + "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb")))) + (properties `((upstream-name . "rockchalk"))) + (build-system r-build-system) + (propagated-inputs + `(("r-cardata" ,r-cardata) + ("r-kutils" ,r-kutils) + ("r-lme4" ,r-lme4) + ("r-mass" ,r-mass))) + (home-page + "https://cran.r-project.org/package=rockchalk") + (synopsis + "Regression Estimation and Presentation") + (description + "This package provides a collection of functions for interpretation and +presentation of regression analysis. These functions are used to produce the +statistics lectures in . Includes regression +diagnostics, regression tables, and plots of interactions and \"moderator\" +variables. The emphasis is on \"mean-centered\" and \"residual-centered\" +predictors. The vignette @code{rockchalk} offers a fairly comprehensive +overview. The vignette @code{Rstyle} has advice about coding in R. The +package title @code{rockchalk} refers to our school motto, \"Rock Chalk +Jayhawk, Go K.U.\".") + (license license:gpl3+))) -- 2.20.1