On 04/16/2011 11:04 PM, Josh B wrote:
Dear listserv,
Here is my latest formatting problem. I would like to rotate the x-axis labels
by 45 degrees on a _barplot_. Apparently this is slightly different from the
example given in the R FAQ, which is for rotating the x-axis labels on a
scatterplot
(http://cran.r-project.org/doc/FAQ/R-FAQ.html#How-can-I-create-rotated-axis-labels_003f).
I have adapted that code, as best I could, and here is what I have come up with
so far:
x<- c(4, 1, 1, 1)
barplot(x, space = 0)
#the "space = 0" argument, above, just reflects my personal preference for
having no space between the bars
text(1:4, par("usr")[3] - 0.025, srt = 45, adj = 1, labels = c("< 750",
"750-1000", "1000-1250","> 1250"), xpd = TRUE, font = 2)
The graph this generates is pretty close to what I want, but here's where I'm
stuck: How do I move the x-axis labels to the _center_ of each bar? Right now,
they line up with the right-side of each bar.
Hi Josh,
Have a look at the "barp" function in the plotrix package, in particular
the "staxx" and "srt" arguments. Try adding "srt=45" to the last example.
Jim
______________________________________________
R-help@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.