diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-04-20 04:19:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 03:19:15 -0600 |
commit | de004857ff9798365e1bcafb932d5403272aaba6 (patch) | |
tree | 0daeba658eae12f413ad1be352e7b0212658859a | |
parent | 6b2f63310e427e9a79c2b21c19d321446623921a (diff) | |
download | spack-de004857ff9798365e1bcafb932d5403272aaba6.tar.gz spack-de004857ff9798365e1bcafb932d5403272aaba6.tar.bz2 spack-de004857ff9798365e1bcafb932d5403272aaba6.tar.xz spack-de004857ff9798365e1bcafb932d5403272aaba6.zip |
r-pbivnorm: new package (#23108)
-rw-r--r-- | var/spack/repos/builtin/packages/r-pbivnorm/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-pbivnorm/package.py b/var/spack/repos/builtin/packages/r-pbivnorm/package.py new file mode 100644 index 0000000000..1e0dea5143 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-pbivnorm/package.py @@ -0,0 +1,18 @@ +# 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 RPbivnorm(RPackage): + """ Vectorized Bivariate Normal CDF: + + Provides a vectorized R function for calculating probabilities from a + standard bivariate normal CDF.""" + + homepage = "https://github.com/brentonk/pbivnorm" + cran = "pbivnorm" + + version('0.6.0', sha256='07c37d507cb8f8d2d9ae51a9a6d44dfbebd8a53e93c242c4378eaddfb1cc5f16') |