[R] Bar Plot ggplot2 Filling bars with cross hatching

Gabor Grothendieck ggrothendieck at gmail.com
Tue Jan 20 01:59:30 CET 2009


If classic graphics is ok try this which uses hatches and different
shades of grey:

barplot(lizards, names.arg = color, col = grey(c(.2, .5, 1)), density = 20,
    angle = c(45, -45, 0), legend = color)




On Wed, Jan 14, 2009 at 10:18 PM, stephen sefick <ssefick at gmail.com> wrote:
> #I am putting a test together for an introductory biology class and I
> would like to put different cross hatching inside of each bar for the
> bar plot below
>
> color <- c("Brightly Colored", "Dull", "Neither")
> lizards <- c(277, 70, 3)
> liz.col <- data.frame(color, lizards)
> qplot(color, lizards, data=liz.col, geom="bar", ylab="Observed
> Matings", main="Counts Out of 350 Aquariums", ylim=c(0,400),
> fill=color)+scale_y_continuous(breaks=c(0, 70, 277, 350))
>
>
> Thanks
> --
> Stephen Sefick
>
> Let's not spend our time and resources thinking about things that are
> so little or so large that all they really do for us is puff us up and
> make us feel like gods.  We are mammals, and have not exhausted the
> annoying little problems of being mammals.
>
>                                                                -K. Mullis
>
> ______________________________________________
> 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