27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
# Copyright 2013-2020 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 RGgdendro(RPackage):
|
|
"""This is a set of tools for dendrograms and tree plots using
|
|
'ggplot2'. The 'ggplot2' philosophy is to clearly separate data
|
|
from the presentation. Unfortunately the plot method for
|
|
dendrograms plots directly to a plot device without exposing
|
|
the data. The 'ggdendro' package resolves this by making
|
|
available functions that extract the dendrogram plot data.
|
|
The package provides implementations for tree, rpart, as well
|
|
as diana and agnes cluster diagrams."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=ggdendro"
|
|
url = "https://cloud.r-project.org/src/contrib/ggdendro_0.1-20.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/ggdendro"
|
|
|
|
version('0.1-20', sha256='125cae904fa5d426cccaf32ebe9c6297e9ef0c6fd3f19f61513834d03a0cf8ff')
|
|
|
|
depends_on('r-ggplot2@0.9.2:', type=('build', 'run'))
|
|
depends_on('r-mass', type=('build', 'run'))
|