Description Usage Arguments Value Author(s) Examples
After classifying droplets, we can compute the mean for each class.
1 | classMeans(droplets, classCol = "class")
|
droplets |
A data frame of droplets with |
classCol |
The column (name or number) from |
A list or data frame of means of each class.
Anthony Chiu, anthony.chiu@cruk.manchester.ac.uk
1 2 3 4 5 6 7 8 9 | ## Get the means of the clusters.
aWell <- KRASdata[["E03"]]
aWell$Cluster <- relabelClasses(aWell, classCol="Cluster")
classMeans(aWell, classCol="Cluster")
## We repeat the above but with a sample with no "PP" cluster.
aWell <- KRASdata[["H04"]]
aWell$Cluster <- relabelClasses(aWell, classCol="Cluster")
classMeans(aWell, classCol="Cluster")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.