2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-07-31 04:10:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-07-31 04:10:25 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-08 08:28:52 +08:00
|
|
|
class RPbkrtest(RPackage):
|
2016-07-31 04:10:25 +08:00
|
|
|
"""Test in mixed effects models. Attention is on mixed effects models as
|
|
|
|
implemented in the 'lme4' package. This package implements a parametric
|
|
|
|
bootstrap test and a Kenward Roger modification of F-tests for linear mixed
|
|
|
|
effects models and a parametric bootstrap test for generalized linear mixed
|
|
|
|
models."""
|
|
|
|
|
|
|
|
homepage = "http://people.math.aau.dk/~sorenh/software/pbkrtest/"
|
|
|
|
url = "https://cran.r-project.org/src/contrib/pbkrtest_0.4-6.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/pbkrtest"
|
2016-07-31 04:10:25 +08:00
|
|
|
|
|
|
|
version('0.4-6', '0a7d9ff83b8d131af9b2335f35781ef9')
|
2017-01-31 22:54:34 +08:00
|
|
|
version('0.4-4', '5e54b1b1b35413dd1d24ef15735ec645')
|
2016-07-31 04:10:25 +08:00
|
|
|
|
2017-01-31 22:54:34 +08:00
|
|
|
depends_on('r@3.2.3:')
|
|
|
|
|
|
|
|
depends_on('r-lme4@1.1.10:', type=('build', 'run'))
|
|
|
|
depends_on('r-matrix@1.2.3:', type=('build', 'run'))
|
2017-01-08 11:59:02 +08:00
|
|
|
depends_on('r-mass', type=('build', 'run'))
|