Description Usage Arguments Value Examples
Find the Heterogeneity of a Gene Within a Population
1 |
expr |
A vector or matrix of gene expressions. For the matrix, genes should be represented as rows and cells as columns. |
unit |
The units to be parsed to the entropy function. |
normalise |
A logical value representing whether the gene frequencies should be normalised into a distribution. |
transpose |
A logical value representing whether the matrix should be transposed before any calculations are performed. |
A vector of the information gained from the gene distribution compared to the uniform distribution. The higher the value more heterogeneous the cell is within the population.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Creating Data
gene1 <- c(0, 0, 0, 0, 1, 2, 3)
gene2 <- c(5, 5, 3, 2, 0, 0, 0)
gene3 <- c(2, 0, 2, 1, 3, 0, 1)
gene4 <- c(3, 3, 3, 3, 3, 3, 3)
gene5 <- c(0, 0, 0, 0, 5, 0, 0)
gene_counts <- matrix(c(gene1, gene2, gene3, gene4, gene5), ncol = 5)
rownames(gene_counts) <- paste0("cell", 1:7)
colnames(gene_counts) <- paste0("gene", 1:5)
# Calculating Heterogeneity For Each Gene
gene_het(gene1)
gene_het(gene2)
gene_het(gene3)
gene_het(gene4)
gene_het(gene5)
# Calculating Heterogeneity For a Matrix
gene_het(gene_counts)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.