From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raoul Bonnal Subject: [PATCH 19/35] gnu: Add r-pbkrtest. Date: Thu, 19 Jan 2017 19:55:14 +0100 Message-ID: <20170119185530.35824-19-ilpuccio.febo@gmail.com> References: <20170119185530.35824-1-ilpuccio.febo@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35602) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUHse-000606-Ew for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUHsd-0004e6-I7 for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:16 -0500 Received: from mail-wm0-x243.google.com ([2a00:1450:400c:c09::243]:34210) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUHsd-0004dx-7c for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:15 -0500 Received: by mail-wm0-x243.google.com with SMTP id c85so1070332wmi.1 for ; Thu, 19 Jan 2017 10:56:14 -0800 (PST) In-Reply-To: <20170119185530.35824-1-ilpuccio.febo@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org From: Raoul Jean Pierre Bonnal * gnu/packages/statistics.scm (r-pbkrtest): New variable. --- gnu/packages/statistics.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 9a26114..3a69f49 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -4451,3 +4451,24 @@ to functions where showing the progress is useful e.g. bootstrap.") search algorithms and related applications including KNN classification, regression and information measures.") (license license:gpl2+))) + +(define-public r-pbkrtest + (package + (name "r-pbkrtest") + (version "0.4-6") + (source + (origin + (method url-fetch) + (uri (cran-uri "pbkrtest" version)) + (sha256 + (base32 + "00cw18q7wvddzjrbxz917wkix6r7672vi2wmsp4gwgzady8vha4x")))) + (build-system r-build-system) + (propagated-inputs `(("r-lme4" ,r-lme4))) + (home-page "http://people.math.aau.dk/~sorenh/software/pbkrtest/") + (synopsis "Parametric bootstrap and Kenward Roger based methods for mixed model comparison") + (description + "This package implements a parametric bootstrap test and a Kenward Roger +modification of F-tests for linear mixed effects models and a parametric +bootstrap test for generalized linear mixed models.") + (license license:gpl2+))) -- 1.9.1