summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-philentropy/package.py
blob: 0acee8f19eb45f26fa854637cbf910a42fa9dbe3 (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
32
# 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 RPhilentropy(RPackage):
    """Similarity and Distance Quantification Between Probability Functions.

    Computes 46 optimized distance and similarity measures for comparing
    probability functions (Drost (2018) <doi:10.21105/joss.00765>). These
    comparisons between probability functions have their foundations in a broad
    range of scientific disciplines from mathematics to ecology. The aim of
    this package is to provide a core framework for clustering, classification,
    statistical inference, goodness-of-fit, non-parametric statistics,
    information theory, and machine learning tasks that are based on comparing
    univariate or multivariate probability functions."""

    cran = "philentropy"

    version('0.6.0', sha256='138acf2aedab17c9d367def378e35c8aba80d9e786284b2866955cea1c24eeb6')
    version('0.5.0', sha256='b39e9a825458f3377e23b2a133180566780e89019e9d22a6a5b7ca87c49c412f')
    version('0.4.0', sha256='bfd30bf5635aab6a82716299a87d44cf96c7ab7f4ee069843869bcc85c357127')

    depends_on('r@3.1.2:', type=('build', 'run'))
    depends_on('r-rcpp', type=('build', 'run'))
    depends_on('r-kernsmooth', type=('build', 'run'))
    depends_on('r-poorman', type=('build', 'run'), when='@0.6.0:')

    depends_on('r-dplyr', type=('build', 'run'), when='@:0.5.0')