summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-reams/package.py
blob: d4b5d4191c6ec4537ba225f1ef40a3b8893a7e6e (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-2023 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.package import *


class RReams(RPackage):
    """Resampling-Based Adaptive Model Selection.

    Resampling methods for adaptive linear model selection.  These can be
    thought of as extensions of the Akaike information criterion that account
    for searching among candidate models."""

    cran = "reams"

    version("0.1", sha256="ac24ea875b24bd18152afd87538b1f807f442cf2bd1c6ac1a365cf543c88181e")

    depends_on("r@2.9.0:", type=("build", "run"))
    depends_on("r-leaps", type=("build", "run"))
    depends_on("r-mgcv", type=("build", "run"))