summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-doby/package.py
blob: 1562b9cb04bd0d50f92416a2af547f3c76bb4f65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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 RDoby(RPackage):
    """Groupwise Statistics, LSmeans, Linear Estimates, Utilities.

    Utility package containing: 1) Facilities for working with grouped data:
        'do' something to data stratified 'by' some variables. 2) LSmeans
        (least-squares means), general linear estimates. 3) Restrict functions
        to a smaller domain. 4) Miscellaneous other utilities."""

    cran = "doBy"

    version("4.6.16", sha256="d5937eb57d293b0bc2e581ff2e1e628671cb4eacddc0b9574dc28a5316ecbbe7")

    depends_on("r@3.6.0:", type=("build", "run"))
    depends_on("r-broom", type=("build", "run"))
    depends_on("r-deriv", type=("build", "run"))
    depends_on("r-dplyr", type=("build", "run"))
    depends_on("r-ggplot2", type=("build", "run"))
    depends_on("r-mass", type=("build", "run"))
    depends_on("r-matrix", type=("build", "run"))
    depends_on("r-magrittr", type=("build", "run"))
    depends_on("r-microbenchmark", type=("build", "run"))
    depends_on("r-pbkrtest@0.4-8.1:", type=("build", "run"))
    depends_on("r-tibble", type=("build", "run"))