1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-11 15:40:31 +02:00

gnu: r-rlrsim: Move to (gnu packages cran).

* gnu/packages/statistics.scm (r-rlrsim): Move from here...
* gnu/packages/cran.scm (r-rlrsim): ...to here.

Change-Id: I13fa5af69ebe38ae5f035d0d76eeb0ef1b4518ee
This commit is contained in:
Ricardo Wurmus
2026-02-16 16:56:19 +01:00
committed by Andreas Enge
parent 7f92fbe75c
commit 1ca4675b5d
2 changed files with 25 additions and 24 deletions

View File

@@ -26,7 +26,7 @@
;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
;;; Copyright © 2020 Rafael Luque Leiva <rafael.luque@osoco.es>
;;; Copyright © 2020, 2021 Lars-Dominik Braun <ldb@leibniz-psychology.org>
;;; Copyright © 2020, 2021, 2022 Lars-Dominik Braun <ldb@leibniz-psychology.org>
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2020 Antoine Côté <antoine.cote@posteo.net>
;;; Copyright © 2020, 2026 Arun Isaac <arunisaac@systemreboot.net>
@@ -6994,6 +6994,30 @@ core R features like the condition system, and core @code{Tidyverse} features
like tidy evaluation.")
(license license:gpl3)))
(define-public r-rlrsim
(package
(name "r-rlrsim")
(version "3.1-9")
(source
(origin
(method url-fetch)
(uri (cran-uri "RLRsim" version))
(sha256
(base32 "1xb353f2bfm27rkgc008n0vf8y6ggy2ql7lx0z2azc4k13mn0szp"))))
(properties `((upstream-name . "RLRsim")))
(build-system r-build-system)
(propagated-inputs (list r-lme4 r-mgcv r-nlme r-rcpp))
(home-page "https://github.com/fabian-s/RLRsim")
(synopsis
"Exact (restricted) likelihood ratio tests for mixed and additive Models")
(description
"This is a package for rapid, simulation-based exact (restricted)
likelihood ratio tests for testing the presence of variance
components/nonparametric terms for models fit with @code{nlme::lme()},
@code{lme4::lmer()}, @code{lmeTest::lmer()}, @code{gamm4::gamm4()},
@code{mgcv::gamm()} and @code{SemiPar::spm()}.")
(license (list license:gpl2+ license:gpl3+))))
(define-public r-robslopes
(package
(name "r-robslopes")

View File

@@ -3032,29 +3032,6 @@ files into/from Pandas DataFrames. It is a wrapper around the C library
@code{readstat}.")
(license license:asl2.0)))
(define-public r-rlrsim
(package
(name "r-rlrsim")
(version "3.1-9")
(source
(origin
(method url-fetch)
(uri (cran-uri "RLRsim" version))
(sha256
(base32 "1xb353f2bfm27rkgc008n0vf8y6ggy2ql7lx0z2azc4k13mn0szp"))))
(properties `((upstream-name . "RLRsim")))
(build-system r-build-system)
(propagated-inputs (list r-lme4 r-mgcv r-nlme r-rcpp))
(home-page "https://github.com/fabian-s/RLRsim")
(synopsis
"Exact (Restricted) Likelihood Ratio Tests for Mixed and Additive Models")
(description
"Rapid, simulation-based exact (restricted) likelihood ratio tests for testing
the presence of variance components/nonparametric terms for models fit with
@code{nlme::lme()}, @code{lme4::lmer()}, @code{lmeTest::lmer()},
@code{gamm4::gamm4()}, @code{mgcv::gamm()} and @code{SemiPar::spm()}.")
(license (list license:gpl2+ license:gpl3+))))
(define-public r-simr
(package
(name "r-simr")