From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: [PATCH] gnu: Add r-mvtnorm. Date: Wed, 04 May 2016 15:46:46 +0200 Message-ID: <87y47qc4vt.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47036) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1axx8w-0000sG-MJ for guix-devel@gnu.org; Wed, 04 May 2016 09:47:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1axx8k-0007Re-Ve for guix-devel@gnu.org; Wed, 04 May 2016 09:47:05 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:48495) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1axx8k-0007QV-T8 for guix-devel@gnu.org; Wed, 04 May 2016 09:46:58 -0400 Received: from [143.121.239.252] (port=40616 helo=roel-tp) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1axx8f-0004mv-LP for guix-devel@gnu.org; Wed, 04 May 2016 09:46:54 -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, Yet another patch for an R package. Kind regards, Roel Janssen >From ff2b4d8a0bc1ecf1dcc3a6ce8f3e457910e7aa33 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Wed, 4 May 2016 15:45:09 +0200 Subject: [PATCH] gnu: Add r-mvtnorm. * gnu/packages/statistics.scm (r-mvtnorm): New variable. --- gnu/packages/statistics.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 3d0faf7..245d970 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2393,6 +2393,25 @@ things. RSP is ideal for self-contained scientific reports and R package vignettes.") (license license:lgpl2.1+))) +(define-public r-mvtnorm + (package + (name "r-mvtnorm") + (version "1.0-5") + (source (origin + (method url-fetch) + (uri (cran-uri "mvtnorm" version)) + (sha256 + (base32 + "1pc1mi2h063gh4a40009xk5j6pf5bm4274i5kycln38dixsry3yh")))) + (build-system r-build-system) + (inputs + `(("gfortran" ,gfortran))) + (home-page "http://mvtnorm.R-forge.R-project.org") + (synopsis "Package for multivariate normal and t-distributions") + (description "This package can compute multivariate normal and +t-probabilities, quantiles, random deviates and densities.") + (license license:gpl2+))) + (define-public r-matrixstats (package (name "r-matrixstats") -- 2.7.4