2018-10-08 04:52:23 +08:00
|
|
|
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-07-31 04:39:28 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-07-31 04:39:28 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-08 08:28:52 +08:00
|
|
|
class RRandomforest(RPackage):
|
2016-07-31 04:39:28 +08:00
|
|
|
"""Classification and regression based on a forest of trees using random
|
|
|
|
inputs."""
|
|
|
|
|
|
|
|
homepage = "https://www.stat.berkeley.edu/~breiman/RandomForests/"
|
|
|
|
url = "https://cran.r-project.org/src/contrib/randomForest_4.6-12.tar.gz"
|
2017-11-06 05:42:24 +08:00
|
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/randomForest"
|
2016-07-31 04:39:28 +08:00
|
|
|
|
|
|
|
version('4.6-12', '071c03af974198e861f1475c5bab9e7a')
|