diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-16 08:25:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-16 15:25:07 +0100 |
commit | 89009c10af2045db5e04e83702d119a74205329a (patch) | |
tree | 851b3c4a46d19b69ca5544e20af5fcf0b55b5d02 | |
parent | 2eed811a1f94251c58e5aa6519ff9aa519298755 (diff) | |
download | spack-89009c10af2045db5e04e83702d119a74205329a.tar.gz spack-89009c10af2045db5e04e83702d119a74205329a.tar.bz2 spack-89009c10af2045db5e04e83702d119a74205329a.tar.xz spack-89009c10af2045db5e04e83702d119a74205329a.zip |
new package: r-proc (#20970)
-rw-r--r-- | var/spack/repos/builtin/packages/r-proc/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-proc/package.py b/var/spack/repos/builtin/packages/r-proc/package.py new file mode 100644 index 0000000000..a0255604cf --- /dev/null +++ b/var/spack/repos/builtin/packages/r-proc/package.py @@ -0,0 +1,25 @@ +# 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 RProc(RPackage): + """Display and Analyze ROC Curves + + Tools for visualizing, smoothing and comparing receiver operating + characteristic (ROC curves). (Partial) area under the curve (AUC) can be + compared with statistical tests based on U-statistics or bootstrap. + Confidence intervals can be computed for (p)AUC or ROC curves.""" + + homepage = "http://expasy.org/tools/pROC/" + url = "https://cloud.r-project.org/src/contrib/pROC_1.17.0.1.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/pROC" + + version('1.17.0.1', sha256='221c726ffb81b04b999905effccfd3a223cd73cae70d7d86688e2dd30e51a6bd') + + depends_on('r@2.14:', type=('build', 'run')) + depends_on('r-plyr', type=('build', 'run')) + depends_on('r-rcpp@0.11.1:', type=('build', 'run')) |