32 lines
1.5 KiB
Python
32 lines
1.5 KiB
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 RFactominer(RPackage):
|
|
"""FactoMineR: Multivariate Exploratory Data Analysis and Data Mining"""
|
|
|
|
homepage = "http://factominer.free.fr"
|
|
url = "https://cran.r-project.org/src/contrib/FactoMineR_1.35.tar.gz"
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/FactoMineR"
|
|
|
|
version('1.41', sha256='a9889d69e298b8a01e8d0a5a54260730e742c95681e367d759829aad9a8740c0')
|
|
version('1.40', sha256='68cb778fe7581b55666a5ae4aa7a5e7fa3ecbd133ae8cff1b2371a737b6d95e8')
|
|
version('1.39', sha256='b0bb1d6d7d1f3cb11a4b63c377321e10078a36f29bc78dfa3b80c7c149f4a08a')
|
|
version('1.38', sha256='f13059c84c53f8761bd5a61e980f8609e2119e36c5d35233fc2baac93268086f')
|
|
version('1.36', sha256='2198c3facaa41a23df6f9373d4ccb636b98a8810896e379e5deb686ab31b36de')
|
|
version('1.35', sha256='afe176fe561d1d16c5965ecb2b80ec90a56d0fbcd75c43ec8025a401a5b715a9')
|
|
|
|
depends_on('r@3.0.0:')
|
|
depends_on('r-car', type=('build', 'run'))
|
|
depends_on('r-cluster', type=('build', 'run'))
|
|
depends_on('r-ellipse', type=('build', 'run'))
|
|
depends_on('r-flashclust', type=('build', 'run'))
|
|
depends_on('r-lattice', type=('build', 'run'))
|
|
depends_on('r-leaps', type=('build', 'run'))
|
|
depends_on('r-mass', type=('build', 'run'))
|
|
depends_on('r-scatterplot3d', type=('build', 'run'))
|