\HeaderA{maPalette}{Microarray color palette}{maPalette}
\keyword{color}{maPalette}
\begin{Description}\relax
This function returns a vector of color names corresponding to a range of colors specified in the arguments.
\end{Description}
\begin{Usage}
\begin{verbatim}
maPalette(low = "white", high = c("green", "red"), mid=NULL, k =50)
\end{verbatim}
\end{Usage}
\begin{Arguments}
\begin{ldescription}
\item[\code{low}] Color for the lower end of the color palette, specified using any of the three kinds of R colors, i.e., either a color name (an element of \code{colors}), a hexadecimal string of the form \code{"\#rrggbb"}, or an integer \code{i} meaning \code{palette()[i]}.
\item[\code{high}] Color for the upper end of the color palette, specified
using any of the three kinds of R colors, i.e., either a color name
(an element of \code{colors}), a hexadecimal string of the form
\code{"\#rrggbb"}, or an integer \code{i} meaning \code{palette()[i]}.
\item[\code{mid}] Color for the middle portion of the color palette, specified using any of the three kinds of R colors, i.e., either a color name (an element of \code{colors}), a hexadecimal string of the form \code{"\#rrggbb"}, or an integer \code{i} meaning \code{palette()[i]}.
\item[\code{k}] Number of colors in the palette.
\end{ldescription}
\end{Arguments}
\begin{Value}
A "character" vector of color names. This can be used to create a user-defined color palette for subsequent graphics by \code{palette}, in a \code{col=} specification in graphics functions, or in \code{\LinkA{par}{par}}.
\end{Value}
\begin{Author}\relax
Sandrine Dudoit, \url{http://www.stat.berkeley.edu/~sandrine}, Yee Hwa (Jean) Yang.
\end{Author}
\begin{References}\relax
S. Dudoit and Y. H. Yang. (2002). Bioconductor R packages for exploratory analysis and normalization of cDNA microarray data. In G. Parmigiani, E. S. Garrett, R. A. Irizarry and S. L. Zeger, editors, \emph{The Analysis of Gene Expression Data: Methods and Software}, Springer, New York.
\end{References}
\begin{SeeAlso}\relax
\code{\LinkA{image}{image}}, \code{\LinkA{maColorBar}{maColorBar}}, \code{\LinkA{maImage}{maImage}}, \code{\LinkA{maImage.func}{maImage.func}}.
\end{SeeAlso}
\begin{Examples}
\begin{ExampleCode}
par(mfrow=c(1,4))
pal <- maPalette(low="red", high="green")
maColorBar(seq(-2,2, 0.2), col=pal, horizontal=FALSE, k=21)
pal <- maPalette(low="red", high="green", mid="yellow")
maColorBar(seq(-2,2, 0.2), col=pal, horizontal=FALSE, k=21)
pal <- maPalette()
maColorBar(seq(-2,2, 0.2), col=pal, horizontal=FALSE, k=21)
pal <- maPalette(low="purple", high="purple",mid="white")
maColorBar(seq(-2,2, 0.2), col=pal, horizontal=FALSE, k=21)
\end{ExampleCode}
\end{Examples}


