diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-08 09:06:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-08 09:06:37 -0600 |
commit | bf9661f18a1cecddfd83f8f2d8931ed2a03b9323 (patch) | |
tree | edbf71e982c870b2603c2505a74ebecc1d8a9cdb | |
parent | 0c1599403d54df8fd428c1516938cefca62fafb6 (diff) | |
download | spack-bf9661f18a1cecddfd83f8f2d8931ed2a03b9323.tar.gz spack-bf9661f18a1cecddfd83f8f2d8931ed2a03b9323.tar.bz2 spack-bf9661f18a1cecddfd83f8f2d8931ed2a03b9323.tar.xz spack-bf9661f18a1cecddfd83f8f2d8931ed2a03b9323.zip |
Add new r-plotmo package (#14048)
-rw-r--r-- | var/spack/repos/builtin/packages/r-plotmo/package.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-plotmo/package.py b/var/spack/repos/builtin/packages/r-plotmo/package.py new file mode 100644 index 0000000000..2f3b434a84 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-plotmo/package.py @@ -0,0 +1,26 @@ +# 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 RPlotmo(RPackage): + """plotmo: Plot a Model's Residuals, Response, and Partial Dependence + Plots. + + Plot model surfaces for a wide variety of models using partial dependence + plots and other techniques. Also plot model residuals and other information + on the model.""" + + homepage = "http://www.milbo.users.sonic.net/" + url = "https://cloud.r-project.org/src/contrib/plotmo_3.5.6.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/plotmo" + + version('3.5.6', sha256='78f08dc897136d21fa8ade2acb6290351b569d29eb0592c7074c0be3cf2aa594') + + depends_on('r@3.4.0:', type=('build', 'run')) + depends_on('r-formula@1.2-3:', type=('build', 'run')) + depends_on('r-plotrix', type=('build', 'run')) + depends_on('r-teachingdemos', type=('build', 'run')) |