diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-11-03 15:43:58 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-11-03 22:49:10 +0100 |
commit | 48bf30e3b13a363bd678ee7987624215bce72084 (patch) | |
tree | 6e267750984ae03109977976ac1911bd92b4783e /gnu/packages/cran.scm | |
parent | 75ce5b04661d848840427657a52d7e52e305539e (diff) | |
download | guix-48bf30e3b13a363bd678ee7987624215bce72084.tar.gz guix-48bf30e3b13a363bd678ee7987624215bce72084.zip |
gnu: Add r-fancova.
* gnu/packages/cran.scm (r-fancova): New variable.
Change-Id: I9bfef352be86c08707edfee0bfb171094114d158
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ecf9f0f96e..a838584618 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -13187,6 +13187,30 @@ packages. It contains also functions for simplifying some clustering analysis steps and provides ggplot2-based elegant data visualization.") (license license:gpl2))) +(define-public r-fancova + (package + (name "r-fancova") + (version "0.6-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "fANCOVA" version)) + (sha256 + (base32 "04mw0blgpwdk6wdg8llrig43psgc0vb42cbimvzbnym8v503dsn3")))) + (properties `((upstream-name . "fANCOVA"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/package=fANCOVA") + (synopsis "Nonparametric analysis of covariance") + (description + "This package provides a collection of R functions to perform +nonparametric analysis of covariance for regression curves or surfaces. +Testing the equality or parallelism of nonparametric curves or surfaces is +equivalent to analysis of variance (ANOVA) or analysis of covariance (ANCOVA) +for one-sample functional data. Three different testing methods are available +in the package, including one based on L-2 distance, one based on an ANOVA +statistic, and one based on variance estimators.") + (license license:gpl3))) + (define-public r-fansi (package (name "r-fansi") |