spack/var/spack/repos/builtin/packages/r-ggbeeswarm/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

24 lines
836 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 RGgbeeswarm(RPackage):
"""Categorical Scatter (Violin Point) Plots.
Provides two methods of plotting categorical scatter plots such that the
arrangement of points within a category reflects the density of data at
that region, and avoids over-plotting."""
cran = "ggbeeswarm"
version("0.6.0", sha256="bbac8552f67ff1945180fbcda83f7f1c47908f27ba4e84921a39c45d6e123333")
depends_on("r@3.0.0:", type=("build", "run"))
depends_on("r-beeswarm", type=("build", "run"))
depends_on("r-ggplot2@2.0:", type=("build", "run"))
depends_on("r-vipor", type=("build", "run"))