summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-gamm4/package.py
blob: b3d817b265c374193d2b8fdd110b8686c41a826c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2022 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'))