[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55379] [PATCH 08/14] gnu: Add r-qvcalc.
From: |
kyle |
Subject: |
[bug#55379] [PATCH 08/14] gnu: Add r-qvcalc. |
Date: |
Thu, 12 May 2022 02:10:28 +0000 |
From: Kyle Andrews <kyle@posteo.net>
---
gnu/packages/cran.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index b5946070b0..b86ab6127d 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -33405,6 +33405,27 @@ (define-public r-ca
"Computation and visualization of simple, multiple and joint
correspondence analysis.")
(license (list license:gpl2+ license:gpl3+))))
+(define-public r-qvcalc
+ (package
+ (name "r-qvcalc")
+ (version "1.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "qvcalc" version))
+ (sha256
+ (base32
+ "0banzv78kb53ybfbh1hmgx7kxvpbbdxzg4dsn7vrwhmxs72srkch"))))
+ (properties `((upstream-name . "qvcalc")))
+ (build-system r-build-system)
+ (home-page "https://davidfirth.github.io/qvcalc")
+ (synopsis
+ "Quasi Variances for Factor Effects in Statistical Models")
+ (description
+ "This package provides functions to compute quasi variances and associated
measures of approximation error.")
+ (license (list license:gpl2+ license:gpl3+))))
+
+
(define r-gpg
(package
(name "r-gpg")
--
2.36.0
- [bug#55379] [PATCH 01/14] gnu: Add r-gpg., kyle, 2022/05/11
- [bug#55380] [PATCH 02/14] gnu: Add r-piton., kyle, 2022/05/11
- [bug#55381] [PATCH 05/14] gnu: Add r-unglue., kyle, 2022/05/11
- [bug#55379] [PATCH 04/14] gnu: Add r-unpivotr., kyle, 2022/05/11
- [bug#55379] [PATCH 06/14] gnu: Add r-vcdextra., kyle, 2022/05/11
- [bug#55379] [PATCH 07/14] gnu: Add r-ca., kyle, 2022/05/11
- [bug#55379] [PATCH 08/14] gnu: Add r-qvcalc.,
kyle <=
- [bug#55379] [PATCH 03/14] gnu: Add r-tidyxl., kyle, 2022/05/11
- [bug#55379] [PATCH 11/14] gnu: Add r-picosat., kyle, 2022/05/11
- [bug#55379] [PATCH 12/14] gnu: Add r-ryacas., kyle, 2022/05/11
- [bug#55379] [PATCH 13/14] gnu: Add r-showimage., kyle, 2022/05/11
- [bug#55379] [PATCH 10/14] gnu: Add r-relimp., kyle, 2022/05/11
- [bug#55379] [PATCH 09/14] gnu: Add r-gnm., kyle, 2022/05/11
- [bug#55379] [PATCH 14/14] gnu: Add r-genoud., kyle, 2022/05/11
- [bug#55379] [PATCH 01/14] gnu: Add r-gpg., Maxime Devos, 2022/05/13