me
/
guix
Archived
1
0
Fork 0

gnu: Add r-multcompview.

* gnu/packages/cran.scm (r-multcompview): New variable.
master
Ricardo Wurmus 2022-01-05 23:09:22 +01:00
parent 8908b234a8
commit 19e0b39361
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 21 additions and 0 deletions

View File

@ -11014,6 +11014,27 @@ analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
Hothorn, Westfall, 2010, CRC Press).")
(license license:gpl2)))
(define-public r-multcompview
(package
(name "r-multcompview")
(version "0.1-8")
(source
(origin
(method url-fetch)
(uri (cran-uri "multcompView" version))
(sha256
(base32 "1rfq9wvvrghq0542ff40wy8vdmsyd8spzz6ihcywcvxdfa8m6g8j"))))
(properties `((upstream-name . "multcompView")))
(build-system r-build-system)
(home-page "https://cran.r-project.org/package=multcompView")
(synopsis "Visualizations of paired comparisons")
(description
"Convert a logical vector or a vector of p-values or a correlation,
difference, or distance matrix into a display identifying the pairs for which
the differences were not significantly different.")
;; Any version of the GPL.
(license license:gpl3+)))
(define-public r-emmeans
(package
(name "r-emmeans")