Re: [R] axis labels not showing

2012-04-08 Thread ilai
On Sun, Apr 8, 2012 at 11:40 AM, Vikram Chhatre
crypticline...@gmail.com 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 to the plot or,
well, a host of other things...

Hope this helps

 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

 __
 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.

__
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.


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 ke...@math.montana.edu wrote:
 On Sun, Apr 8, 2012 at 11:40 AM, Vikram Chhatre
 crypticline...@gmail.com 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 to the plot or,
 well, a host of other things...

 Hope this helps

 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

 __
 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.

__
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.


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 archive at Nabble.com.

__
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.