gnu: Add r-fancova.

* gnu/packages/cran.scm (r-fancova): New variable.

Change-Id: I9bfef352be86c08707edfee0bfb171094114d158
This commit is contained in:
Ricardo Wurmus 2023-11-03 15:43:58 +01:00
parent 75ce5b0466
commit 48bf30e3b1
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -13187,6 +13187,30 @@ (define-public r-factoextra
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")