diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-13 23:12:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-14 13:35:55 +0100 |
commit | d015db6f57888c5573dfb276121971cb7d44f4b7 (patch) | |
tree | 84fc4c891388417b8f8866b511908c544d8d4fc9 /gnu | |
parent | 4b44bfb6ec86fd51bc7d3bac31adcb6731592578 (diff) | |
download | guix-d015db6f57888c5573dfb276121971cb7d44f4b7.tar guix-d015db6f57888c5573dfb276121971cb7d44f4b7.tar.gz |
gnu: Add r-acrt.
* gnu/packages/cran.scm (r-acrt): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
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))) |