\HeaderA{pairwise.comparison}{Compute pairwise comparison statistics between two experimental groups}{pairwise.comparison}
\keyword{misc}{pairwise.comparison}
\begin{Description}\relax
Generate fold changes, t-tests and means for a pair of experimental groups
\end{Description}
\begin{Usage}
\begin{verbatim}
  pairwise.comparison(x,group,members=NULL,spots=NULL,a.order=NULL,b.order=NULL,method="unlogged",logged=TRUE)
\end{verbatim}
\end{Usage}
\begin{Arguments}
\begin{ldescription}
\item[\code{x}] an exprSet object 
\item[\code{group}] column in pData(x) 
\item[\code{members}] labels in group 
\item[\code{spots}] unnormalised AffyBatch data for this experiment - if included, results in PMA calls and detection p-values being generated 
\item[\code{a.order}] For a comparison with matched pairs, the ordering of the first group of replicates
\item[\code{b.order}] For a comparison with matched pairs, the ordering of the second group of replicates
\item[\code{method}] What method should be used to calculate the average for the fold-change - can be either "logged","unlogged","median" 
\item[\code{logged}] Whether the input data is logged or not 
\end{ldescription}
\end{Arguments}
\begin{Details}\relax
Given an exprSet object, generate quick stats for pairwise
comparisons between a pair of experimental groups. If a.order and
b.order are specified then a paired sample t-test will be conducted
between the groups, with the arrays in each group sorted according to
the ordering specified. By default, the function assumes that the
expression values are logged (this can be changed with the parameter
"logged"). The fold-changes are computed from the average values
across replicates. Unless you specify otherwise, this is done using the mean of the
unlogged values (i.e. logged data is first unlogged, the mean
calculated, and the result re-logged). The parameter "method", allows
the mean of the logged values or their median to be used
instead. T-tests are always computed with the logged data.
\end{Details}
\begin{Value}
A Pairwise comparison object.
\end{Value}
\begin{Author}\relax
Crispin J Miller
\end{Author}
\begin{References}\relax
http://bioinformatics.picr.man.ac.uk/
\end{References}
\begin{Examples}
\begin{ExampleCode} 
  ## Not run: 
    pc <- pairwise.comparison(eset.rma,"group",c("A","P")) 
  
## End(Not run)
\end{ExampleCode}
\end{Examples}


