r-gamm4: new package (#23097)

This commit is contained in:
Glenn Johnson 2021-04-20 04:34:38 -05:00 committed by GitHub
parent 6cf91449d4
commit 80e60ceb91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,22 @@
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class RGamm4(RPackage):
"""Generalized Additive Mixed Models using 'mgcv' and 'lme4':
Estimate generalized additive mixed models via a version of function gamm()
from 'mgcv', using 'lme4' for estimation."""
cran = "gamm4"
version('0.2-6', sha256='57c5b66582b2adc32f6a3bb6a259f5b95198e283a96d966a6007e8e48b380c89')
depends_on('r@2.9.0:', type=('build', 'run'))
depends_on('r-matrix', type=('build', 'run'))
depends_on('r-lme4@1.0:', type=('build', 'run'))
depends_on('r-mgcv@1.7-23:', type=('build', 'run'))