From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: [PATCH] gnu: Add r-estimability. Date: Tue, 03 May 2016 15:06:42 +0200 Message-ID: <878tzr5lzx.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50839) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1axa2d-0004Sy-09 for guix-devel@gnu.org; Tue, 03 May 2016 09:07:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1axa2R-0004fs-4q for guix-devel@gnu.org; Tue, 03 May 2016 09:07:01 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:51911) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1axa2R-0004eh-1r for guix-devel@gnu.org; Tue, 03 May 2016 09:06:55 -0400 Received: from [143.121.239.252] (port=54413 helo=roel-tp) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1axa2L-0005oU-HS for guix-devel@gnu.org; Tue, 03 May 2016 09:06:50 -0400 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 Dear Guix, Here's another R package. Kind regards, Roel Janssen >From 97775f169bcd9b81daa19ec7c298698340d5a7b9 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Tue, 3 May 2016 15:04:21 +0200 Subject: [PATCH] gnu: Add r-estimability. * gnu/packages/statistics.scm (r-estimability): New variable. --- gnu/packages/statistics.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 3d0faf7..e324642 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -252,6 +252,23 @@ purposes for which more comprehensive (and widely tested) libraries such as OpenSSL should be used.") (license license:gpl2+))) +(define-public r-estimability + (package + (name "r-estimability") + (version "1.1-1") + (source (origin + (method url-fetch) + (uri (cran-uri "estimability" version)) + (sha256 + (base32 "049adh8i0ad0m0qln2ylqdxcs5v2q9zfignn2a50r5f93ip2ay6w")))) + (build-system r-build-system) + (home-page "http://cran.r-project.org/web/packages/estimability") + (synopsis "Tools for assessing estimability of linear predictions") + (description "Provides tools for determining estimability of linear functions +of regression coefficients, and 'epredict' methods that handle non-estimable +cases correctly.") + (license license:gpl2+))) + (define-public r-gtable (package (name "r-gtable") -- 2.7.4