Re: [R] bold dot size and name in plot

2013-10-20 Thread eliza botto
Dear Arun,Thankyou very much. Glad that you helped.:Deliza > Date: Sat, 19 Oct 2013 21:31:09 -0700 > From: smartpink...@yahoo.com > Subject: Re: [R] bold dot size and name in plot > To: r-help@r-project.org > CC: eliza_bo...@hotmail.com; j...@bitwrit.com.au > > Hi, >

Re: [R] bold dot size and name in plot

2013-10-19 Thread arun
Hi, May be this also helps.  Using ?ggplot() indx <- 1 + 2*((z[,1]>80 & z[,1] < 100) & (z[,2]>2 & z[,2] < 4)) + 4*((z[,1]>40 & z[,1] < 60) & (z[,2]>8 & z[,2] < 10)) + 8*((z[,1]>100 & z[,1] < 120) & (z[,2]> 6 & z[,2] < 8))  indx[indx>1] <- 2 z1<-cbind(z,indx) z2 <- as.data.frame(z1) colnames(z2)[1

Re: [R] bold dot size and name in plot

2013-10-19 Thread eliza botto
Dear Denis and jim,Thankyou for your help. eliza > Date: Sun, 20 Oct 2013 10:55:05 +1100 > From: j...@bitwrit.com.au > To: eliza_bo...@hotmail.com > CC: r-help@r-project.org > Subject: Re: [R] bold dot size and name in plot > > On 10/20/2013 08:29 AM, eliza botto

Re: [R] bold dot size and name in plot

2013-10-19 Thread Jim Lemon
On 10/20/2013 08:29 AM, eliza botto wrote: Dear useRs, ... I made a dot plot between them. what i want to do is to bold the size of dots,compared to that of others, for the following ranges ---80 Hi Eliza, Your data was a bit corrupted, but try this: z1<-cbind(z,rep(1,124)) z1[z1[,1]>80 &

Re: [R] bold dot size and name in plot

2013-10-19 Thread Bert Gunter
Follow the posting guide! Code code code. (What you call a "dotplot" I think is what most of us call a scatterplot. And there are many ways of doing this in R and packages, and we have no idea what you used.) Cheers, Bert On Sat, Oct 19, 2013 at 2:29 PM, eliza botto wrote: > Dear useRs, > > I