plotExp.cfa2way {CFAssay} | R Documentation |
This function plots the estimated means of a two-way ANOVA for each experiment in a series of plots. It is recommended to direct it in a pdf-file.
## S3 method for class 'cfa2way' plotExp(x, labels=c(A="A",B="B"), ...)
x |
an R object of class |
labels |
Labels for output description. These describe the meaning of |
... |
further arguments to pass to generic function |
Herbert Braselmann
datatab<- read.table(system.file("doc", "exp2_2waycfa.txt", package="CFAssay"), header=TRUE, sep="\t") names(datatab) # has columns "x5fuCis" and "siRNA" fitcomp<- cfa2way(datatab, A="siRNA", B="x5fuCis", param="A/B") print(fitcomp, labels=c(A="siRNA",B="x5fuCis")) pdf("TwoWay_experimental_plots.pdf") plotExp(fitcomp, labels=c(A="siRNA", B="x5fuCis")) dev.off()