From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54868) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhM-0007hF-Is for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhL-0008SN-Cj for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36910) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhL-0008RH-99 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhL-0008Ds-85 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:03 -0500 Subject: [bug#39416] [PATCH 02/34] gnu: Add package r-forecast Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:55:54 +0100 Message-Id: <20200204135626.28261-2-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-forecast): New variable. --- gnu/packages/cran.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 4fbaa6a00f..8c1e719143 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19283,3 +19283,40 @@ differenced ARIMA(p,d,q) model (Haslett and Raftery, Appl.Statistics, 1989); including inference and basic methods. Some alternative algorithms to estimate \"H\".") (license license:gpl2+))) + +(define-public r-forecast + (package + (name "r-forecast") + (version "8.10") + (source + (origin + (method url-fetch) + (uri (cran-uri "forecast" version)) + (sha256 + (base32 + "0jccr2wg7sii38lyqrs58fkxf2az7nw6v0jya27hpbz9bg8ib3kr")))) + (properties `((upstream-name . "forecast"))) + (build-system r-build-system) + (propagated-inputs + `(("r-colorspace" ,r-colorspace) + ("r-fracdiff" ,r-fracdiff) + ("r-ggplot2" ,r-ggplot2) + ("r-lmtest" ,r-lmtest) + ("r-magrittr" ,r-magrittr) + ("r-nnet" ,r-nnet) + ("r-rcpp" ,r-rcpp) + ("r-rcpparmadillo" ,r-rcpparmadillo) + ("r-timedate" ,r-timedate) + ("r-tseries" ,r-tseries) + ("r-urca" ,r-urca) + ("r-zoo" ,r-zoo) + ;; needed for vignettes + ("r-knitr" ,r-knitr))) + (home-page "http://pkg.robjhyndman.com/forecast/") + (synopsis + "Forecasting Functions for Time Series and Linear Models") + (description + "Methods and tools for displaying and analysing univariate time series +forecasts including exponential smoothing via state space models and automatic +ARIMA modelling.") + (license license:gpl3))) -- 2.20.1