diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-09-05 15:14:45 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-09-05 20:03:06 +0200 |
commit | aaed237d1bcae69bd3c65f06633a8a4c88f2e382 (patch) | |
tree | a007cc3246ea3f65d5a7f7971e40119e7c9eb9fa | |
parent | 1f560b9cdb820569e796caa9949557d9a18f8549 (diff) | |
download | guix-aaed237d1bcae69bd3c65f06633a8a4c88f2e382.tar guix-aaed237d1bcae69bd3c65f06633a8a4c88f2e382.tar.gz |
gnu: Add r-nortest.
* gnu/packages/cran.scm (r-nortest): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 65474d8f8b..4d6bd269b1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4807,6 +4807,25 @@ functions also support labelled data, and all integrate seamlessly into a tidyverse workflow.") (license license:gpl3))) +(define-public r-nortest + (package + (name "r-nortest") + (version "1.0-4") + (source + (origin + (method url-fetch) + (uri (cran-uri "nortest" version)) + (sha256 + (base32 + "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3")))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/nortest/") + (synopsis "Tests for normality") + (description + "This package provides five omnibus tests for testing the composite +hypothesis of normality.") + (license license:gpl2+))) + (define-public r-writexl (package (name "r-writexl") |