spack/var/spack/repos/builtin/packages/r-reams/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

23 lines
763 B
Python

# 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"))