From d015db6f57888c5573dfb276121971cb7d44f4b7 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 13 Dec 2019 23:12:12 +0100 Subject: gnu: Add r-acrt. * gnu/packages/cran.scm (r-acrt): New variable. --- gnu/packages/cran.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ebff9de29c..6c0bc01df0 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -17639,3 +17639,28 @@ clustering.") subgraph as part of a non-parametric two-sample test for equality of distribution.") (license license:gpl2+))) + +(define-public r-acrt + (package + (name "r-acrt") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "acrt" version)) + (sha256 + (base32 + "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s")))) + (properties `((upstream-name . "acrt"))) + (build-system r-build-system) + (propagated-inputs + `(("r-rcpp" ,r-rcpp) + ("r-rcppeigen" ,r-rcppeigen) + ("r-sandwich" ,r-sandwich))) + (home-page "https://cran.r-project.org/web/packages/acrt/") + (synopsis "Autocorrelation robust testing") + (description + "This package provides functions for testing affine hypotheses on the +regression coefficient vector in regression models with autocorrelated +errors.") + (license license:gpl2))) -- cgit v1.2.3