Hi list, I will help an person that will use some graphics of R in internet. But this pearson want to specify the colours. This person want me to create an pallete of colours like that: Name of color - Code - Colour White - 0xFFFFFF - color white (like an box with this color) I know that is possible with R, but i don't know how. Thanks for the advance. Atenciosamente, Leandro Lins Marino Centro de Avalia??o Funda??o CESGRANRIO Rua Santa Alexandrina, 1011 - 2? andar Rio de Janeiro, RJ - CEP: 20261-903 ( (21) 2103-9600 R.:236 ( (21) 8777-7907 * leandro em cesgranrio.org.br "Aquele que suporta o peso da sociedade ? precisamente aquele que obt?m as menores vantagens". (SMITH, Adam) P Antes de imprimir pense em sua responsabilidade e compromisso com o MEIO AMBIENTE
On 7/17/2008 10:25 AM, Leandro Marino wrote:> Hi list, > > > I will help an person that will use some graphics of R in internet. > > But this pearson want to specify the colours. This person want me to create > an pallete of colours like that: > > > Name of color - Code - Colour > White - 0xFFFFFF - color white (like an box with this color) > > I know that is possible with R, but i don't know how.The colors() function returns all of the names. The ?col2rgb has examples that produce text tables like what you want, but doing it graphically will be hard: there are 150 different colours to show. There's some code in the ?rainbow examples that displays a smaller number of colours. Duncan Murdoch> > Thanks for the advance. > > > Atenciosamente, > Leandro Lins Marino > Centro de Avalia??o > Funda??o CESGRANRIO > Rua Santa Alexandrina, 1011 - 2? andar > Rio de Janeiro, RJ - CEP: 20261-903 > ( (21) 2103-9600 R.:236 > ( (21) 8777-7907 > * leandro at cesgranrio.org.br > "Aquele que suporta o peso da sociedade > ? precisamente aquele que obt?m > as menores vantagens". (SMITH, Adam) > > P Antes de imprimir pense em sua responsabilidade e compromisso com o MEIO > AMBIENTE > > ______________________________________________ > 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.
Hi Maybe there is some neat function for it but apply(data.frame(t(col2rgb(colours()[1:10]))),1,function(x) paste(as.character.hexmode(x),collapse="")) gives you hex values for colours specified. Then you can use colours()[1:10] to get names (or you can invent your own) and you can print real colours in a plot by using filled rectangle. Regards Petr r-help-bounces at r-project.org napsal dne 17.07.2008 16:25:39:> Hi list, > > > I will help an person that will use some graphics of R in internet. > > But this pearson want to specify the colours. This person want me tocreate> an pallete of colours like that: > > > Name of color - Code - Colour > White - 0xFFFFFF - color white (like an box with this color) > > I know that is possible with R, but i don't know how. > > Thanks for the advance. > > > Atenciosamente, > Leandro Lins Marino > Centro de Avalia??o > Funda??o CESGRANRIO > Rua Santa Alexandrina, 1011 - 2? andar > Rio de Janeiro, RJ - CEP: 20261-903 > ( (21) 2103-9600 R.:236 > ( (21) 8777-7907 > * leandro at cesgranrio.org.br > "Aquele que suporta o peso da sociedade > ? precisamente aquele que obt?m > as menores vantagens". (SMITH, Adam) > > P Antes de imprimir pense em sua responsabilidade e compromisso com oMEIO> AMBIENTE > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guidehttp://www.R-project.org/posting-guide.html> and provide commented, minimal, self-contained, reproducible code.
"Leandro Marino" <leandro at cesgranrio.org.br> wrote in message news:LJELJKOFGBFMCJDMDOEHGEKCCBAA.leandro at cesgranrio.org.br... But this pearson want to specify the colours. This person want me to create an pallete of colours like that: Name of color - Code - Colour White - 0xFFFFFF - color white (like an box with this color) This page shows an R color chart and how to make one: http://research.stowers-institute.org/efg/R/Color/Chart/index.htm In particular, pp. 2-8 of this PDF shows the color name, hex value, and separate decimal RGB components: http://research.stowers-institute.org/efg/R/Color/Chart/ColorChart.pdf efg Earl F Glynn Bioinformatics Stowers Institute for Medical Research