Generate the histogram for adjacency matrix to show the clustering coefficient distribution.

histPlot(mat)

Arguments

mat

Adjacency matrix resulting from PCIT analysis in which has some zero values.

Value

Returns the histogram of connectivity distribution.

Examples

# loading a simulated normalized data data(simNorm) # getting the PCIT results for first 30 genes results <- PCIT(simNorm[1:30, ]) # plotting the histogram for PCIT significance results histPlot(results$adj_sig)