Description Usage Arguments Author(s) Examples
This function generate a plot with many lines. Each line represents a gene. The y-axis is the estimated expression level for the given factor from ANOVA model. The x-axis is for the levels of the give factor, e.g., different strains.
1 2 | geneprofile(anovaobj, term, geneidx,
col="blue", type="b", ylim, xlab, ylab, ...)
|
anovaobj |
An object of class |
term |
The terms to be plotted. |
geneidx |
The index of genes to be plotted. |
col |
The color to be used in plot. |
type |
The line type. |
ylim |
Y-axis limit. |
xlab |
X-axis label. |
ylab |
Y-axis label. |
... |
Other parameters to be passed to
|
Hao Wu
1 2 3 4 5 6 7 8 9 10 11 | # load in data
data(abf1)
# fit the anova model
## Not run:
fit.fix = fitmaanova(abf1,formula = ~Strain)
# test Strain effect
test.fix = matest(abf1, fit.fix, term="Strain",n.perm= 1000)
# pick significant genes - pick the genes selected by Fs test
idx <- volcano(test.fix)$idx.Fs
geneprofile(fit.fix, "Strain", idx)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.