From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: [PATCH] gnu: Add r-zoo. Date: Mon, 09 May 2016 13:18:08 +0200 Message-ID: <87r3dbpjin.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57894) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1azjCk-0003Xb-5f for guix-devel@gnu.org; Mon, 09 May 2016 07:18:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1azjCd-00033o-FL for guix-devel@gnu.org; Mon, 09 May 2016 07:18:24 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:58928) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1azjCd-00033f-C6 for guix-devel@gnu.org; Mon, 09 May 2016 07:18:19 -0400 Received: from [143.121.239.252] (port=40050 helo=roel-tp) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1azjCb-0005Ce-Mt for guix-devel@gnu.org; Mon, 09 May 2016 07:18:18 -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, There's still a range of R packages I would like to add. Here's another one of them. Thank you for your time. Kind regards, Roel Janssen >From 11a1793ee3f8c9954fae873dc7a6b94412e51b83 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Mon, 9 May 2016 13:15:41 +0200 Subject: [PATCH] gnu: Add r-zoo. * gnu/packages/statistics.scm (r-zoo): 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 7b34832..5ede531 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2593,6 +2593,25 @@ directly from R. Once uploaded to a plotly account, plotly graphs (and the data behind them) can be viewed and modified in a web browser.") (license license:x11))) +(define-public r-zoo + (package + (name "r-zoo") + (version "1.7-13") + (source (origin + (method url-fetch) + (uri (cran-uri "zoo" version)) + (sha256 + (base32 + "0m67bnrg7r1jxvs9p7rpa430szp5qfp65r056yb8bivpc16jd98c")))) + (build-system r-build-system) + (propagated-inputs + `(("r-lattice" ,r-lattice))) + (home-page "http://zoo.R-Forge.R-project.org/") + (synopsis "S3 infrastructure for regular and irregular time series") + (description "This package contains an S3 class with methods for totally +ordered indexed observations. It is particularly aimed at irregular time +series of numeric vectors/matrices and factors.") + (license license:gpl2+))) (define-public r-ztable (package -- 2.7.4