30 lines
1.0 KiB
Python
30 lines
1.0 KiB
Python
# Copyright 2013-2024 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 RRainbow(RPackage):
|
|
"""Bagplots, Boxplots and Rainbow Plots for Functional Data.
|
|
|
|
Visualizing functional data and identifying functional outliers."""
|
|
|
|
cran = "rainbow"
|
|
|
|
license("GPL-3.0-only")
|
|
|
|
version("3.7", sha256="159dd90555eee237397f042d811f773aaee779f5036c4e0669a52c36e28d8db2")
|
|
version("3.6", sha256="63d1246f88a498f3db0321b46a552163631b288a25b24400935db41326636e87")
|
|
|
|
depends_on("r@3.4.0:", type=("build", "run"))
|
|
depends_on("r@4.0.0:", type=("build", "run"), when="@3.7:")
|
|
depends_on("r-pcapp", type=("build", "run"))
|
|
depends_on("r-mass", type=("build", "run"))
|
|
depends_on("r-hdrcde", type=("build", "run"))
|
|
depends_on("r-cluster", type=("build", "run"))
|
|
depends_on("r-colorspace", type=("build", "run"))
|
|
depends_on("r-ks", type=("build", "run"))
|