summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2020-07-29 22:25:01 -0500
committerGitHub <noreply@github.com>2020-07-29 22:25:01 -0500
commitf0ce129c43e1d01dd8d8d78eafcd757cc1cde0d6 (patch)
tree4dff1ae440ba2804ac2944c0a01068cb877a795a
parentd61f362211a62f6a6126ec33cbbc97604358f6f7 (diff)
downloadspack-f0ce129c43e1d01dd8d8d78eafcd757cc1cde0d6.tar.gz
spack-f0ce129c43e1d01dd8d8d78eafcd757cc1cde0d6.tar.bz2
spack-f0ce129c43e1d01dd8d8d78eafcd757cc1cde0d6.tar.xz
spack-f0ce129c43e1d01dd8d8d78eafcd757cc1cde0d6.zip
New package: r-hh (#17667)
* New package: r-hh * Add short description Add the project one liner for a short description that will be used for `module whatis`.
-rw-r--r--var/spack/repos/builtin/packages/r-hh/package.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-hh/package.py b/var/spack/repos/builtin/packages/r-hh/package.py
new file mode 100644
index 0000000000..1f455fcac1
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-hh/package.py
@@ -0,0 +1,46 @@
+# Copyright 2013-2020 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 RHh(RPackage):
+ """HH: Statistical Analysis and Data Display: Heiberger and Holland.
+
+ Support software for Statistical Analysis and Data Display (Second
+ Edition, Springer, ISBN 978-1-4939-2121-8, 2015) and (First Edition,
+ Springer, ISBN 0-387-40270-5, 2004) by Richard M. Heiberger and Burt
+ Holland. This contemporary presentation of statistical methods features
+ extensive use of graphical displays for exploring data and for displaying
+ the analysis. The second edition includes redesigned graphics and
+ additional chapters. The authors emphasize how to construct and interpret
+ graphs, discuss principles of graphical design, and show how accompanying
+ traditional tabular results are used to confirm the visual impressions
+ derived directly from the graphs. Many of the graphical formats are novel
+ and appear here for the first time in print. All chapters have exercises.
+ All functions introduced in the book are in the package. R code for all
+ examples, both graphs and tables, in the book is included in the scripts
+ directory of the package."""
+
+ homepage = "https://cloud.r-project.org/package=HH"
+ url = "https://cloud.r-project.org/src/contrib/HH_3.1-40.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/HH"
+
+ version('3.1-40', sha256='795924d900a98ae367e6697b2c951c3b4910a54931aebcad5024eda083d4a8a2')
+
+ depends_on('r@3.0.2:', type=('build', 'run'))
+ depends_on('r-lattice', type=('build', 'run'))
+ depends_on('r-latticeextra', type=('build', 'run'))
+ depends_on('r-multcomp', type=('build', 'run'))
+ depends_on('r-gridextra@2.0.0:', type=('build', 'run'))
+ depends_on('r-reshape2', type=('build', 'run'))
+ depends_on('r-leaps', type=('build', 'run'))
+ depends_on('r-vcd', type=('build', 'run'))
+ depends_on('r-colorspace', type=('build', 'run'))
+ depends_on('r-rcolorbrewer', type=('build', 'run'))
+ depends_on('r-shiny@0.13.1:', type=('build', 'run'))
+ depends_on('r-hmisc', type=('build', 'run'))
+ depends_on('r-abind', type=('build', 'run'))
+ depends_on('r-rmpfr@0.6.0:', type=('build', 'run'))