29 lines
1.2 KiB
Python
29 lines
1.2 KiB
Python
# Copyright 2013-2022 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 RPlyr(RPackage):
|
|
"""Tools for Splitting, Applying and Combining Data
|
|
|
|
A set of tools that solves a common set of problems: you need to break a
|
|
big problem down into manageable pieces, operate on each piece and then put
|
|
all the pieces back together. For example, you might want to fit a model to
|
|
each spatial location or time point in your study, summarise data by panels
|
|
or collapse high-dimensional arrays to simpler summary statistics. The
|
|
development of 'plyr' has been generously supported by 'Becton
|
|
Dickinson'."""
|
|
|
|
homepage = "http://had.co.nz/plyr"
|
|
url = "https://cloud.r-project.org/src/contrib/plyr_1.8.4.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/plyr"
|
|
|
|
version('1.8.6', sha256='ea55d26f155443e9774769531daa5d4c20a0697bb53abd832e891b126c935287')
|
|
version('1.8.4', sha256='60b522d75961007658c9806f8394db27989f1154727cb0bb970062c96ec9eac5')
|
|
|
|
depends_on('r@3.1.0:', type=('build', 'run'))
|
|
depends_on('r-rcpp@0.11.0:', type=('build', 'run'))
|