CytoKFeatureVars {cytoKernel} | R Documentation |
Given a CytoK object, this function returns the CytoK Feature Vars
Accessors for the 'CytoKFeatureVars' slot of a CytoK object.
CytoKFeatureVars(object) ## S4 method for signature 'CytoK' CytoKFeatureVars(object)
object |
an object of class |
Value of featureVars
passed to CytoK
. NULL
if featureVars
was left blank
data <- cbind(matrix(rnorm(1200,mean=2, sd=1.5), nrow=200, ncol=6), matrix(rnorm(1200,mean=5, sd=1.9), nrow=200, ncol=6)) data_CytoK <- CytoK(object=data, group_factor = rep(c(0,1), each=6), lowerRho=2, upperRho=12,gridRho=4,alpha = 0.05, featureVars = NULL) CytoKFeatureVars(data_CytoK)