## Loading the dataset
data(gastro)
## To see the boxplots for W values in all chips
boxplot(gastro.raw) ## maigesRaw class
boxplot(gastro.norm) ## maigesNorm class
boxplot(gastro.summ) ## summarized data (also maigesNorm class)
## To see the boxplots for W values in individual chips
## separating into print tips.
boxplot(gastro.raw[,1]) ## maigesRaw class, first chip
boxplot(gastro.norm[,8]) ## maigesNorm class, 8th chip
boxplot(gastro.summ[,19]) ## summarized data (also maigesNorm class), 19th chip
## Boxplot for individual genes into ANOVA model fitting
gastro.ANOVA = designANOVA(gastro.summ, factors="Tissue")
gastro.ANOVAfit = deGenesANOVA(gastro.ANOVA, retF=TRUE)
boxplot(gastro.ANOVAfit, name="KLK13", gLabelID="GeneName",
sLabelID="Tissue")
Run the code above in your browser using DataLab