[R] color palette from red to blue passing white

Achim Zeileis Achim.Zeileis at wu-wien.ac.at
Tue Dec 4 05:08:51 CET 2007



On Mon, 3 Dec 2007, jim holtman wrote:

> see if this is what you need:
>
> require(lattice)
> x <- matrix(1:100,10)
> levelplot(x,col.regions=colorRampPalette(c('dark red','white','dark blue')))

Instead of colorRampPalette(), you could also use diverge_hcl() in package
"vcd" to get a perceptually-based version, e.g.,

  levelplot(x, col.regions = diverg_hcl(16))


>
>
> On Dec 3, 2007 5:41 PM, Linda Smith <lsmithingm at gmail.com> wrote:
> > Hi All,
> >
> > I am looking for a color palette like this:
> > http://www.ncl.ucar.edu/Applications/Images/h_long_5_lg.png
> >
> > I think I found out how some time ago (something like Colors[1:n]), but when
> > I now wanna use it, I could not remember how I did it.
> >
> > Does anyone know which package I could use?
> >
> > Many thanks!
> >
> > Linda
> >
> >        [[alternative HTML version deleted]]
> >
> > ______________________________________________
> > R-help at r-project.org mailing list
> > https://stat.ethz.ch/mailman/listinfo/r-help
> > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> > and provide commented, minimal, self-contained, reproducible code.
> >
>
>
>
> --
> Jim Holtman
> Cincinnati, OH
> +1 513 646 9390
>
> What is the problem you are trying to solve?
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
>



More information about the R-help mailing list