25 lines
1.1 KiB
Python
25 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 RMatrixstats(RPackage):
|
|
"""High-performing functions operating on rows and columns of matrices,
|
|
e.g. col / rowMedians(), col / rowRanks(), and col / rowSds(). Functions
|
|
optimized per data type and for subsetted calculations such that both
|
|
memory usage and processing time is minimized. There are also optimized
|
|
vector-based methods, e.g. binMeans(), madDiff() and
|
|
weightedMedian()."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=matrixStats"
|
|
url = "https://cloud.r-project.org/src/contrib/matrixStats_0.52.2.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/matrixStats"
|
|
|
|
version('0.54.0', sha256='8f0db4e181300a208b9aedbebfdf522a2626e6675d2662656efb8ba71b05a06f')
|
|
version('0.52.2', sha256='39da6aa6b109f89a141dab8913d981abc4fbd3f8be9e206f92e382cc5270d2a5')
|
|
|
|
depends_on('r@2.12.0:', type=('build', 'run'))
|