Re: [R] axis labels not showing

2012-04-08 Thread Ivan Allaman
It's very simple my boy!! Do you already to play with "mar"? So..Try to change the values this object. For example, par(..., mar=c(*5*,2,2,2)). Bye! -- View this message in context: http://r.789695.n4.nabble.com/axis-labels-not-showing-tp4541268p4541354.html Sent from the R help mailing list

Re: [R] axis labels not showing

2012-04-08 Thread Vikram Chhatre
Indeed. Changing margins brought back the axis labels. Thank you. What I would really like to do is stack these plots atop each other so they share the common x-axis. Is there a way to do it with ggplot2? Vikram On Sun, Apr 8, 2012 at 1:33 PM, ilai wrote: > On Sun, Apr 8, 2012 at 11:40 AM,

Re: [R] axis labels not showing

2012-04-08 Thread ilai
On Sun, Apr 8, 2012 at 11:40 AM, Vikram Chhatre wrote: > Hello - > > I want to generate stacked plots with par(mfrow)) function.  However, > my axis labels aren't showing. > Your mar (2) are too narrow. You could increase back to the default or use the lines option in mtext to write labels closer

[R] axis labels not showing

2012-04-08 Thread Vikram Chhatre
Hello - I want to generate stacked plots with par(mfrow)) function. However, my axis labels aren't showing. My script is here: http://pastebin.com/yXXeMQgb The plot is here: http://www.crypticlineage.net/rdisc/strplot.pdf Thank you for your time. Vikram __