classMeans {twoddpcr} | R Documentation |
After classifying droplets, we can compute the mean for each class.
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
## 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")