diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-04-20 04:36:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 11:36:48 +0200 |
commit | c10944e8fdda844df23204615f598ca3f45b3c2f (patch) | |
tree | e67b8244a76a6b10ef771665178a0610e183ba18 /var | |
parent | e0052505552ec42f711ae2a40479352eab951034 (diff) | |
download | spack-c10944e8fdda844df23204615f598ca3f45b3c2f.tar.gz spack-c10944e8fdda844df23204615f598ca3f45b3c2f.tar.bz2 spack-c10944e8fdda844df23204615f598ca3f45b3c2f.tar.xz spack-c10944e8fdda844df23204615f598ca3f45b3c2f.zip |
r-bayesplot: new package (#23091)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-bayesplot/package.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-bayesplot/package.py b/var/spack/repos/builtin/packages/r-bayesplot/package.py new file mode 100644 index 0000000000..1bc82a2a83 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-bayesplot/package.py @@ -0,0 +1,34 @@ +# Copyright 2013-2021 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 RBayesplot(RPackage): + """Plotting for Bayesian Models: + + Plotting functions for posterior analysis, MCMC diagnostics, prior and + posterior predictive checks, and other visualizations to support the + applied Bayesian workflow advocated in Gabry, Simpson, Vehtari, Betancourt, + and Gelman (2019) <doi:10.1111/rssa.12378>. The package is designed not + only to provide convenient functionality for users, but also a common set + of functions that can be easily used by developers working on a variety of + R packages for Bayesian modeling, particularly (but not exclusively) + packages interfacing with 'Stan'.""" + + homepage = "https://mc-stan.org/bayesplot/" + cran = "bayesplot" + + version('1.8.0', sha256='a605f9929e681593a3ef3ca9c836e713314994aaea00f359f71cfc42d151c948') + + depends_on('r@3.1.0:', type=('build', 'run')) + depends_on('r-dplyr@0.8.0:', type=('build', 'run')) + depends_on('r-ggplot2@3.0.0:', type=('build', 'run')) + depends_on('r-ggridges', type=('build', 'run')) + depends_on('r-glue', type=('build', 'run')) + depends_on('r-reshape2', type=('build', 'run')) + depends_on('r-rlang@0.3.0:', type=('build', 'run')) + depends_on('r-tibble', type=('build', 'run')) + depends_on('r-tidyselect', type=('build', 'run')) |