[R] Horizontal grid in background of barplot

David Arnold dwarnold45 at suddenlink.net
Mon Sep 3 21:12:54 CEST 2012


All,

I have:

x <- matrix(c(22,3,6,69,9,4,7,81,23,4,22,50),nrow=3,byrow=TRUE)
rownames(x) <- c("Cold or flu","Headache","Backache");
colnames(x) <- c("Went to doctor","No response","Did
nothing","Self-medicated")
x <- t(x)
print(x)
barplot(x,beside=TRUE,
        ylim=c(0,90),
        xlab="Ailment",
        ylab="Percent",
        legend.text=TRUE,
        args.legend=list("topright",title="Treatment"))
abline(h=c(seq(10,90,10)))
box()

 I'd like to get the horizontal lines in the background.

Any suggestions?

D.



--
View this message in context: http://r.789695.n4.nabble.com/Horizontal-grid-in-background-of-barplot-tp4642081.html
Sent from the R help mailing list archive at Nabble.com.



More information about the R-help mailing list