Re: [R] scale breaks

2013-08-31 Thread Shane Carey
I want to use it, but just show a slash on the yaxis rather than two horizontal lines. Thanks On Saturday, August 31, 2013, Jim Lemon wrote: > On 08/30/2013 11:53 PM, Shane Carey wrote: > >> Hi Jim et al, >> >> I want to remove the upper bounding box, >> I did this by >> #box() >> >> in the gap.p

Re: [R] scale breaks

2013-08-30 Thread Shane Carey
Hi Jim et al, I want to remove the upper bounding box, I did this by #box() in the gap.plot function. It still leaves me with two horizontal lines. I would like to remove them also, where are the created within the function? Thanks, this is great, exactly what I need. Cheers On Fri, Aug 30, 20

Re: [R] scale breaks

2013-08-30 Thread Shane Carey
It worked perfectly, your a star!!! Thanks On Fri, Aug 30, 2013 at 11:40 AM, Shane Carey wrote: > Oooff, Right, I will give it a go and see how I get on. > > Thanks > > > On Fri, Aug 30, 2013 at 11:17 AM, Jim Lemon wrote: > >> On 08/30/2013 07:57 PM, Shane Carey wrote: >> >>> This is what I p

Re: [R] scale breaks

2013-08-30 Thread Shane Carey
Oooff, Right, I will give it a go and see how I get on. Thanks On Fri, Aug 30, 2013 at 11:17 AM, Jim Lemon wrote: > On 08/30/2013 07:57 PM, Shane Carey wrote: > >> This is what I put in: >> gap.boxplot(DATA$Conductivity~**factor(DATA$UnitName_1),ylim=** >> c(LOWER_Y_Conductivity,UPPER_**Y_Cond

Re: [R] scale breaks

2013-08-30 Thread Jim Lemon
On 08/30/2013 07:57 PM, Shane Carey wrote: This is what I put in: gap.boxplot(DATA$Conductivity~factor(DATA$UnitName_1),ylim=c(LOWER_Y_Conductivity,UPPER_Y_Conductivity_int),gap=gap_Conductivity, col=colours,outwex=one,whisklty = "solid",whisklwd=lwth,outcol= "black", outpch=dtsym,

Re: [R] scale breaks

2013-08-30 Thread Shane Carey
This is what I put in: gap.boxplot(DATA$Conductivity~factor(DATA$UnitName_1),ylim=c(LOWER_Y_Conductivity,UPPER_Y_Conductivity_int),gap=gap_Conductivity, col=colours,outwex=one,whisklty = "solid",whisklwd=lwth,outcol= "black", outpch=dtsym, outcex=dtsize, range=1.5,xlab="",y

Re: [R] scale breaks

2013-08-30 Thread Berend Hasselman
On 30-08-2013, at 11:49, Shane Carey wrote: > Hi, > > xlab="", > ylab"", > You were told to use xlab="", ylab="" You seem to have omitted the = after ylab Berend > Would not work. > > Thanks > > > On Fri, Aug 30, 2013 at 9:37 AM, Shane Carey wrote: > >> Thanks >> >> >> On Fri, Aug

Re: [R] scale breaks

2013-08-30 Thread Shane Carey
Hi, xlab="", ylab"", Would not work. Thanks On Fri, Aug 30, 2013 at 9:37 AM, Shane Carey wrote: > Thanks > > > On Fri, Aug 30, 2013 at 1:49 AM, Jim Lemon wrote: > >> On 08/30/2013 01:28 AM, Shane Carey wrote: >> >>> Hello all, >>> >>> I have decided to go ahead with gap.boxplot. I am trying

Re: [R] scale breaks

2013-08-30 Thread Shane Carey
Thanks On Fri, Aug 30, 2013 at 1:49 AM, Jim Lemon wrote: > On 08/30/2013 01:28 AM, Shane Carey wrote: > >> Hello all, >> >> I have decided to go ahead with gap.boxplot. I am trying to suppress the >> axis labels, both x and y labels. I tried using axis.labels=NULL but it >> would not work. >> >

Re: [R] scale breaks

2013-08-29 Thread Jim Lemon
On 08/30/2013 01:28 AM, Shane Carey wrote: Hello all, I have decided to go ahead with gap.boxplot. I am trying to suppress the axis labels, both x and y labels. I tried using axis.labels=NULL but it would not work. Hi Shane, To suppress the axis labels, pass an empty string: gap.barplot(...,x

Re: [R] scale breaks

2013-08-29 Thread Shane Carey
"I would also like to display a y-axis value in the upper box" I got this part working now. On Thu, Aug 29, 2013 at 4:28 PM, Shane Carey wrote: > Hello all, > > I have decided to go ahead with gap.boxplot. I am trying to suppress the > axis labels, both x and y labels. I tried using axis.label

Re: [R] scale breaks

2013-08-29 Thread Shane Carey
Hello all, I have decided to go ahead with gap.boxplot. I am trying to suppress the axis labels, both x and y labels. I tried using axis.labels=NULL but it would not work. gap.boxplot(DATA$Conductivity~factor(DATA$UnitName_1),ylim=c(LOWER_Y_Conductivity,UPPER_Y_Conductivity_int),gap=gap_Conductiv

Re: [R] scale breaks

2013-08-29 Thread Shane Carey
Ok, thanks all :-) On Thu, Aug 29, 2013 at 2:39 AM, Jim Lemon wrote: > On 08/29/2013 02:52 AM, Shane Carey wrote: > >> Hi, >> >> Has anyone ever created scale breaks in R something like what is shown >> here >> in the section, >> Use a Scale Break >> >> http://www.r-bloggers.com/**graphing-high

Re: [R] scale breaks

2013-08-28 Thread Jim Lemon
On 08/29/2013 02:52 AM, Shane Carey wrote: Hi, Has anyone ever created scale breaks in R something like what is shown here in the section, Use a Scale Break http://www.r-bloggers.com/graphing-highly-skewed-data/ Thanks Hi Shane, As Sarah answered, axis.break in the plotrix package is a start

Re: [R] scale breaks

2013-08-28 Thread Rolf Turner
On 29/08/13 05:03, Sarah Goslee wrote: Yes. Using my rudimentary telepathic powers, I suppose that you also want to know how to do it, not just whether it has been done. In that case, perhaps you should look at axis.break() from the plotrix package. (In response to the question, from S

Re: [R] scale breaks

2013-08-28 Thread Sarah Goslee
On Wed, Aug 28, 2013 at 1:35 PM, Bert Gunter wrote: > Sarah et. al.: > > Heh heh. > > However .. my always fallible judgment says, don't do it. Axis scale breaks > invite misreading, Consider alternatives: > http://stats.stackexchange.com/questions/1764/what-are-alternatives-to-broken-axes Well,

Re: [R] scale breaks

2013-08-28 Thread Bert Gunter
Sarah et. al.: Heh heh. However .. my always fallible judgment says, don't do it. Axis scale breaks invite misreading, Consider alternatives: http://stats.stackexchange.com/questions/1764/what-are-alternatives-to-broken-axes Cheers, Bert On Wed, Aug 28, 2013 at 10:03 AM, Sarah Goslee wrote: >

Re: [R] scale breaks

2013-08-28 Thread Sarah Goslee
On Wed, Aug 28, 2013 at 12:52 PM, Shane Carey wrote: > Hi, > > Has anyone ever created scale breaks in R something like what is shown here > in the section, Use a Scale Break, > http://www.r-bloggers.com/graphing-highly-skewed-data/ Yes. Using my rudimentary telepathic powers, I suppose that yo

[R] scale breaks

2013-08-28 Thread Shane Carey
Hi, Has anyone ever created scale breaks in R something like what is shown here in the section, Use a Scale Break http://www.r-bloggers.com/graphing-highly-skewed-data/ Thanks -- Shane [[alternative HTML version deleted]] __ R-help@r-projec