Description Usage Arguments Details Value Examples
Creates a data.frame from the output of pairwiseTest, allows to adjust raw p-values by methods implemented in p.adjust.
| 1 2 3 | 
| object |  An object of class "pairwiseTest", created using the function  | 
| digits | number of digits for rounding of results | 
| p.adjust.method | Method to adjust p-values for multiple hypothesis testing, see options in p.adjust.method in stats. The default in this function in "none", resulting in unadjusted p-values | 
| ... | Currently not used. | 
Coerces the raw p-values and the corresponding group levels to a data.frame and applies p.adjust to it.
A dataframe, with columns
| p.val.raw  | raw p-values | 
| p.val.adj  | adjusted p-values, according to the method specified in p.adjust.method | 
| comparison | the calculated differences or ratios of parameters | 
| groupx  | levels of group x | 
| groupy  | levels of group y | 
and possibly further columns containing levels of by.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | data(Oats)
apOats<-pairwiseTest(yield~nitro, data=Oats,
 by="Variety", method="t.test", var.equal=FALSE)
apOats
# summary just creates a data.frame from the output
summary(apOats)
# an allows application of p.adjust
# on the p.values:
summary(apOats, p.adjust.method="holm")
# See ?p.adjust.methods for the methods available.
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.