summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-06-15 12:16:34 -0500
committerGitHub <noreply@github.com>2021-06-15 11:16:34 -0600
commitd7263b5da0caa1ce44c2cc08b0597380838564ab (patch)
tree506c51f832f07f32003a7d7ad8917f71698f02aa /var
parentba65cc73ef7fadf47865c12a626e132330171d7b (diff)
downloadspack-d7263b5da0caa1ce44c2cc08b0597380838564ab.tar.gz
spack-d7263b5da0caa1ce44c2cc08b0597380838564ab.tar.bz2
spack-d7263b5da0caa1ce44c2cc08b0597380838564ab.tar.xz
spack-d7263b5da0caa1ce44c2cc08b0597380838564ab.zip
r-insight: new package (#24313)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-insight/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-insight/package.py b/var/spack/repos/builtin/packages/r-insight/package.py
new file mode 100644
index 0000000000..0a4b2439b0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-insight/package.py
@@ -0,0 +1,27 @@
+# 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 RInsight(RPackage):
+ """Easy Access to Model Information for Various Model Objects
+
+ A tool to provide an easy, intuitive and consistent access to information
+ contained in various R models, like model formulas, model terms,
+ information about random effects, data that was used to fit the model or
+ data from response variables. 'insight' mainly revolves around two types of
+ functions: Functions that find (the names of) information, starting with
+ 'find_', and functions that get the underlying data, starting with 'get_'.
+ The package has a consistent syntax and works with many different model
+ objects, where otherwise functions to access these information are
+ missing."""
+
+ homepage = "https://easystats.github.io/insight/"
+ cran = "insight"
+
+ version('0.14.1', sha256='0e7761997a46ee33039cdeff1779dbc210de3644e4444c6e893e4ef2f12cc129')
+
+ depends_on('r@3.4:', type=('build', 'run'))