summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-matrixstats/package.py
blob: 79001b68029fdd3de4f8cd7f49170776ecedbfc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2018 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://cran.rstudio.com/web/packages/matrixStats/index.html"
    url      = "https://cran.rstudio.com/src/contrib/matrixStats_0.52.2.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/matrixStats"

    version('0.52.2', '41b987d3ae96ee6895875c413adcba3c')