summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-kknn/package.py
blob: 8d07faf28551625229946ca4670b806eb080ef35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 RKknn(RPackage):
    """Weighted k-Nearest Neighbors for Classification, Regression and
    Clustering."""

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

    version('1.3.1', '372cd84f618cd5005f8c4c5721755117')

    depends_on('r@2.10:')

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