spack/var/spack/repos/builtin/packages/r-kknn/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

22 lines
647 B
Python

# Copyright 2013-2023 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.package import *
class RKknn(RPackage):
"""Weighted k-Nearest Neighbors.
Weighted k-Nearest Neighbors for Classification, Regression and
Clustering."""
cran = "kknn"
version("1.3.1", sha256="22840e70ec2afa40371e274b583634c8f6d27149a87253ee411747d5db78f3db")
depends_on("r@2.10:", type=("build", "run"))
depends_on("r-igraph@1.0:", type=("build", "run"))
depends_on("r-matrix", type=("build", "run"))