matrix2adj | R Documentation |
Convert distance matrix to adjacency dataframe for network construction.
matrix2adj(data, quantile_cutoff = 5)
data |
distance matrix |
quantile_cutoff |
an integer value (1-99) for quantile cutoff |
adjacency dataframe (with columns "from, to, distance,direction, similarity")
example_data <- pGRNDB expression_matrix <- example_data[["expression"]] pseudotime_list <- example_data[["ptime"]]$PseudoTime dtw_dist_matrix <- get_dtw_dist_mat(expression_matrix, pseudotime_list, cores=1) adj_df <- matrix2adj(dtw_dist_matrix)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.