Learn R Programming

cograph (version 2.0.0)

splot.group_tna_permutation: Plot Group Permutation Test Results

Description

Visualizes all pairwise permutation test results from a group_tna object. Creates a multi-panel plot with one panel per comparison.

Usage

splot.group_tna_permutation(x, ...)

plot_group_permutation(x, i = NULL, ...)

Value

Invisibly returns NULL.

Arguments

x

A group_tna_permutation object (from tna::permutation_test on group_tna).

...

Additional arguments passed to plot_permutation().

i

Index or name of specific comparison to plot. NULL for all.

Examples

Run this code
if (FALSE) {
# Create a mock group_tna_permutation object
set.seed(42)
d1 <- matrix(c(0, 0.2, -0.1, -0.2, 0, 0.1, 0.1, -0.1, 0), 3, 3)
rownames(d1) <- colnames(d1) <- c("A", "B", "C")
d1_sig <- d1
d1_sig[abs(d1) < 0.15] <- 0
perm1 <- list(edges = list(diffs_true = d1, diffs_sig = d1_sig, stats = NULL))
attr(perm1, "labels") <- c("A", "B", "C")
class(perm1) <- c("tna_permutation", "list")
gperm <- list("G1 vs. G2" = perm1)
class(gperm) <- c("group_tna_permutation", "list")
plot_group_permutation(gperm)
}

Run the code above in your browser using DataLab