23 lines
725 B
Python
23 lines
725 B
Python
# 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://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'))
|