Can anybody help me on how to boxplot multiple groups with different color? Say, I have 3 groups of data, each group with 2 boxes, and I'd like to have the following layout in the boxplot: red, red, green, green, blue, blue thanks in advance. -- View this message in context: http://www.nabble.com/multiple-groups-with-different-colors-in-boxplot-tp25867267p25867267.html Sent from the R help mailing list archive at Nabble.com.
ONKELINX, Thierry
2009-Oct-13 09:47 UTC
[R] multiple groups with different colors in boxplot
Here is a solution using ggplot2 n <- 1000 dataset <- data.frame(A = rep(1:6, n), B = rep(gl(3, 2), n)) dataset$C <- with(dataset, rnorm(n) * as.numeric(B) + A) library(ggplot2) dataset$A <- factor(dataset$A) #with default colours ggplot(dataset, aes(x = A, y = C, colour = B)) + geom_boxplot() #with custom colours ggplot(dataset, aes(x = A, y = C, colour = B)) + geom_boxplot() + scale_colour_manual(breaks = c("1", "2", "3"), values = c("red", "green", "blue")) HTH, Thierry ------------------------------------------------------------------------ ---- ir. Thierry Onkelinx Instituut voor natuur- en bosonderzoek / Research Institute for Nature and Forest Cel biometrie, methodologie en kwaliteitszorg / Section biometrics, methodology and quality assurance Gaverstraat 4 9500 Geraardsbergen Belgium tel. + 32 54/436 185 Thierry.Onkelinx at inbo.be www.inbo.be To call in the statistician after the experiment is done may be no more than asking him to perform a post-mortem examination: he may be able to say what the experiment died of. ~ Sir Ronald Aylmer Fisher The plural of anecdote is not data. ~ Roger Brinner The combination of some data and an aching desire for an answer does not ensure that a reasonable answer can be extracted from a given body of data. ~ John Tukey -----Oorspronkelijk bericht----- Van: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] Namens kennyPA Verzonden: dinsdag 13 oktober 2009 7:12 Aan: r-help at r-project.org Onderwerp: [R] multiple groups with different colors in boxplot Can anybody help me on how to boxplot multiple groups with different color? Say, I have 3 groups of data, each group with 2 boxes, and I'd like to have the following layout in the boxplot: red, red, green, green, blue, blue thanks in advance. -- View this message in context: http://www.nabble.com/multiple-groups-with-different-colors-in-boxplot-t p25867267p25867267.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ 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. Druk dit bericht a.u.b. niet onnodig af. Please do not print this message unnecessarily. Dit bericht en eventuele bijlagen geven enkel de visie van de schrijver weer en binden het INBO onder geen enkel beding, zolang dit bericht niet bevestigd is door een geldig ondertekend document. The views expressed in this message and any annex are purely those of the writer and may not be regarded as stating an official position of INBO, as long as the message is not confirmed by a duly signed document.
Henrique Dallazuanna
2009-Oct-13 12:26 UTC
[R] multiple groups with different colors in boxplot
Try this; DF <- as.data.frame(matrix(rnorm(60), 10)) boxplot(DF, col = rep(seq(ncol(DF)) + 1, each = 2)) On Tue, Oct 13, 2009 at 2:11 AM, kennyPA <tao_sf at yahoo.com> wrote:> > Can anybody help me on how to boxplot multiple groups with different color? > Say, I have 3 groups of data, each group with 2 boxes, and I'd like to have > the following layout in the boxplot: > > red, red, green, green, blue, blue > > thanks in advance. > -- > View this message in context: http://www.nabble.com/multiple-groups-with-different-colors-in-boxplot-tp25867267p25867267.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > 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. >-- Henrique Dallazuanna Curitiba-Paran?-Brasil 25? 25' 40" S 49? 16' 22" O
Seemingly Similar Threads
- ggplot2 boxplot confusion
- ggplot2 - boxplot of variables / columns
- A rebel boxplot question
- ggplot2: labels points with different colors or idnumbers
- A function for plotting a boxplot with added dot and bars (for mean and SE) - please help improve my code