run_pca {debrowser} | R Documentation |
Runs PCA on the selected dataset.
run_pca(x = NULL, retx = TRUE, center = TRUE, scale = TRUE)
x, |
dataframe with experiment data |
retx, |
specifies if the data should be returned |
center, |
center the PCA (Boolean) |
scale, |
scale the PCA (Boolean) |
pca list
load(system.file("extdata", "demo", "demodata.Rda", package="debrowser")) pca_data<-run_pca(getNormalizedMatrix( demodata[rowSums(demodata[,1:6])>10,1:6]))