Description Usage Arguments Details Value Author(s) Examples
This function returns list of probe ID with p-value, FDR adjusted p-value or fold change selected by given threshold.
1 2 3 4 | summarytable(matestobj, method=c("Fold.change","Pvalperm","adjPvalperm"),
test =c("F1","Fs"),whichTest=c("F1.Pvalperm","F1.adjPvalperm",
"Fs.Pvalperm","Fs.adjPvalperm"),
threshold, outfile="summarytable.csv")
|
matestobj |
An object of class |
method |
Results that you want to include in the output among Fold.change, Pvalperm and adjPvalperm. Default is possible every field. |
test |
Test that you want to include in the output among F1, Fs and Fss. Default is possible every test. |
whichTest |
Test result used to get the subset. If whichTest is not provided, save all result. |
threshold |
Threshold that you want to get the subset. If threshold is not provided, save all result. |
outfile |
File name that you want to save the result. Default name is 'summarytable.csv' |
This function use
result |
It returns result fields (among Fold.change, P-value or adjust P-value if you selected) from test statistics (among F1, Fs or Fss statistics if you selected), subsetted by given statistics ('whichtest') is smaller than 'threshold'. |
outfile |
.csv file saved under the working directory. |
Hyuna Yang
1 2 3 4 5 6 7 8 9 10 11 12 | data(abf1)
## Not run:
fit.full.simple = fitmaanova(abf1,formula = ~ Strain)
# F-test strain effect
ftest.all = matest(abf1, fit.full.simple, term="Strain", n.perm= 1000)
# make FDR adjusted P values
ftest.all = adjPval(ftest.all, 'jsFDR')
summarytable(ftest.all, outfile='all.csv')
smallset = summarytable(ftest.all, method ='Pvalperm',
test=c('F1','Fs'), whichTest='Fs.Pvalperm', threshold = 0.1)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.