Description Usage Arguments Value Examples
This function given a list of vectors containing various elements (e.g. gene names) will create a matrix with the elements as rows and each vector as a column. TRUE/FALSE values wil indicate whether the element was found part of the vector
1 | make_PA_matrix(inList)
|
inList |
List of vectors containing elements. |
A matrix containing various vector elements as rows and the names in the list as columns
1 2 3 4 5 | v1 <- c("EZH2", "B2M", "RCOR1", "CREBBP")
v2 <- c("LCOR", "NCOR1", "MLL2", "CREBBP", "CD58")
v3 <- c("TP53", "UNC80", "CREBBP")
inList <- list("groupA" = v1, "groupB" = v2, "groupC" = v3)
make_PA_matrix(inList)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.