From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54848) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhL-0007hE-QO for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhK-0008OT-MZ for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36907) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhK-0008Ng-Iq for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhK-0008DX-H9 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:02 -0500 Subject: [bug#39416] [PATCH 01/34] gnu: Add package r-fracdiff References: <20200204135451.GG2917@zpidnp36> In-Reply-To: <20200204135451.GG2917@zpidnp36> Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:55:53 +0100 Message-Id: <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-fracdiff): New variable. --- gnu/packages/cran.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 58ceed06d0..4fbaa6a00f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19259,3 +19259,27 @@ are followed and which ones are not) from one package and use it to check another. This makes it easier to find and correct the most important problems first.") (license license:gpl3))) + +(define-public r-fracdiff + (package + (name "r-fracdiff") + (version "1.5-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "fracdiff" version)) + (sha256 + (base32 + "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q")))) + (properties `((upstream-name . "fracdiff"))) + (build-system r-build-system) + (home-page + "https://github.com/mmaechler/fracdiff") + (synopsis + "Fractionally Differenced ARIMA aka ARFIMA(P,d,q) Models") + (description + "Maximum likelihood estimation of the parameters of a fractionally +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+))) -- 2.20.1