summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-kknn/package.py
blob: c63bbf2d6ad0afecb67ad8a0ec416738f879c8ec (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-2019 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 RKknn(RPackage):
    """Weighted k-Nearest Neighbors for Classification, Regression and
    Clustering."""

    homepage = "https://cloud.r-project.org/package=kknn"
    url      = "https://cloud.r-project.org/src/contrib/kknn_1.3.1.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/kknn"

    version('1.3.1', '372cd84f618cd5005f8c4c5721755117')

    depends_on('r@2.10:', type=('build', 'run'))
    depends_on('r-igraph@1.0:', type=('build', 'run'))
    depends_on('r-matrix', type=('build', 'run'))