22 lines
811 B
Python
22 lines
811 B
Python
# Copyright 2013-2022 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 RMultcompview(RPackage):
|
|
"""Visualizations of Paired Comparisons.
|
|
|
|
Convert a logical vector or a vector of p-values or a correlation,
|
|
difference, or distance matrix into a display identifying the pairs for
|
|
which the differences were not significantly different. Designed for use in
|
|
conjunction with the output of functions like TukeyHSD, dist{stats},
|
|
simint, simtest, csimint, csimtest{multcomp}, friedmanmc,
|
|
kruskalmc{pgirmess}."""
|
|
|
|
cran = "multcompView"
|
|
|
|
version('0.1-8', sha256='123d539172ad6fc63d83d1fc7f356a5ed7b691e7803827480118bebc374fd8e5')
|