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. Thank you very much in advance. Sincerely, ----------------------------------- Josh Banta, Ph.D Center for Genomics and Systems Biology New York University 100 Washington Square East New York, NY 10003 Tel: (212) 998-8465 http://plantevolutionaryecology.org [[alternative HTML version deleted]]
On 11-04-16 15:04, 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.Try to set the parameter: adj=.5 (see ?par). HTH, *S* -- Sascha Vieweg, saschaview at gmail.com
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