1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
\name{PlotPattern}
\alias{PlotPattern}
\title{
Visualize the patterns
}
\description{
'PlotPattern' generates the visualized patterns before the multiple condition test.
}
\usage{
PlotPattern(Patterns)
}
\arguments{
\item{Patterns}{
The output of GetPatterns function.
}
}
\value{
A heatmap to visualize the patterns of interest.
}
\references{
Ning Leng, John A. Dawson, James A. Thomson, Victor Ruotti, Anna I. Rissman, Bart M.G. Smits, Jill D. Haag, Michael N. Gould, Ron M. Stewart, and Christina Kendziorski. EBSeq: An empirical Bayes hierarchical model for inference in RNA-seq experiments. Bioinformatics (2013)
}
\author{
Ning Leng
}
\examples{
Conditions = c("C1","C1","C2","C2","C3","C3")
Patterns = GetPatterns(Conditions)
PlotPattern(Patterns)
}
\keyword{ patterns }
|