summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-e1071/package.py
blob: 94b6a60ef93a0258687c19c6f5e98caabf9352e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 RE1071(RPackage):
    """Functions for latent class analysis, short time Fourier transform, fuzzy
    clustering, support vector machines, shortest path computation, bagged
    clustering, naive Bayes classifier, ..."""

    homepage = "https://cran.r-project.org/package=e1071"
    url      = "https://cran.r-project.org/src/contrib/e1071_1.6-7.tar.gz"
    list_url = "https://cran.rstudio.com/src/contrib/Archive/e1071"

    version('1.6-7', 'd109a7e3dd0c905d420e327a9a921f5a')

    depends_on('r-class', type=('build', 'run'))