diff options
author | 宋文武 <[email protected]> | 2023-08-11 20:19:52 +0800 |
---|---|---|
committer | 宋文武 <[email protected]> | 2023-08-11 20:19:52 +0800 |
commit | 770f3f587d35e32aba3c6cb0b606f2d2fe8d5ace (patch) | |
tree | 7e15565a6959867d4bb1bdaf446bbfaff6235259 /gnu/packages/cran.scm | |
parent | 446ec58af67910191be1be06efda6c43fc3cf8d7 (diff) | |
parent | ad4520b92662e42d7d0b1e648b2068300dbb95c8 (diff) |
Merge remote-tracking branch 'origin/master' into kde-updates
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 51e1a8e9d1..b16d4ab3a9 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -14652,6 +14652,35 @@ based on entropy estimates from k-nearest neighbors distances and algorithms for the reconstruction of gene regulatory networks.") (license license:agpl3+))) +(define-public r-partr2 + (package + (name "r-partr2") + (version "0.9.1") + (source (origin + (method url-fetch) + (uri (cran-uri "partR2" version)) + (sha256 + (base32 + "06ky0hhrq0mcsn9rwrzvwn0rrjj0l8rxs0hqp10668gdq5hjk8bn")))) + (properties `((upstream-name . "partR2"))) + (build-system r-build-system) + (propagated-inputs (list r-dplyr + r-ggplot2 + r-lme4 + r-magrittr + r-pbapply + r-purrr + r-rlang + r-tibble + r-tidyr)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/mastoffel/partR2") + (synopsis "Partitioning R2 in generalized linear mixed models") + (description + "This package provides an R tool for estimating and partitioning R2 in +@dfn{generalized linear mixed models} (GLMMs) based on predictor variance.") + (license license:gpl2+))) + (define-public r-pscl (package (name "r-pscl") |