plot_network_dendrogram.Rd
This function takes an adjacency matrix representing a gene regulatory network and builds a dendrogram based on the stength of gene interactions
plot_network_dendrogram(adj_mat, dist_method = "euclidean")
adj_mat | an adjacency matrix to plot the dendrogram from. |
---|---|
dist_method | method to be used to calculate distances
Default is |
Sergio Vasquez and Hajk-Georg Drost
# path to PPCOR output file ppcor_output <- system.file('beeline_examples/PPCOR/outFile.txt', package = 'edgynode') # import PPCOR specific output ppcor_parsed <- ppcor(ppcor_output) # rescale matrix ppcor_rescaled <- network_rescale(ppcor_parsed)#># plot dendrogram plot_network_dendrogram(ppcor_rescaled)