Re: [R] Plotting time vs number

2013-08-29 Thread John Kane
u, 29 Aug 2013 09:49:36 +0530 > To: jholt...@gmail.com > Subject: Re: [R] Plotting time vs number > > Hi, > > plot(strptime(data$Time,"%H:%M:%S"),data$Kbytes,pch=0,type="b",col = > "red", col.axis="red", ylab="", xlab="

Re: [R] Plotting time vs number

2013-08-29 Thread Jim Lemon
On 08/29/2013 02:19 PM, mohan.radhakrish...@polarisft.com wrote: Hi, ... The plots are all there but the x=axis labels are not there. The graph labels are only '12:30', '13:30' and '14:30' I think I need to use your code to get all the values. Hi Mohan, Try this: plot(strptime(data$Time,"%H:

Re: [R] Plotting time vs number

2013-08-28 Thread mohan . radhakrishnan
nt to do it. If I don't show working code I don't get any response from the forum. So I need basic code to show how it works :-) Thanks, Mohan From: jim holtman To: mohan.radhakrish...@polarisft.com Cc: Jannis , R mailing list , r-help-boun...@r-project.org Date: 08/29/2013

Re: [R] Plotting time vs number

2013-08-28 Thread jim holtman
ividual pair is not plotted. > > Thanks. > > > > From: mohan.radhakrish...@polarisft.com > To: Jannis > Cc: r-help@r-project.org, r-help-boun...@r-project.org > Date: 08/28/2013 05:39 PM > Subject:Re: [R] Plotting time vs number > Sent by:

Re: [R] Plotting time vs number

2013-08-28 Thread Jannis
Date: 08/28/2013 05:39 PM Subject:Re: [R] Plotting time vs number Sent by:r-help-boun...@r-project.org Hi Jannis, I have tried that. It doesn't work. Jumps are not there in my other graphs using numbers. Does this anything to do with time series ? Can I just convert this ti

Re: [R] Plotting time vs number

2013-08-28 Thread mohan . radhakrishnan
ect.org, r-help-boun...@r-project.org Date: 08/28/2013 05:39 PM Subject:Re: [R] Plotting time vs number Sent by:r-help-boun...@r-project.org Hi Jannis, I have tried that. It doesn't work. Jumps are not there in my other graphs using numbers. Does this anything to d

Re: [R] Plotting time vs number

2013-08-28 Thread mohan . radhakrishnan
idth = 2224, height = 768) par(mar=c(5, 6, 5, 8) + 0.1) plot(data$Time,names.org="Test",data$Kbytes,type="b",col = "blue", ylab="", xlab="",las=2,lwd=2.5, lty=1,cex.axis=1.5) box() dev.off() From: Jannis To: r-help@r-project.org Date:

Re: [R] Plotting time vs number

2013-08-28 Thread Jannis
Hi Mohan, i am not sure whether I understand your question correctly. Without beeing able to easily reproduce your plot, I would guess that the "breaks" come from the type='b' option you choose. When you use type ='l', the line would be continuous (though the jumps would still be there). If y

[R] Plotting time vs number

2013-08-28 Thread mohan . radhakrishnan
Hi, The plot function draws a broken line. The graph breaks when it jumps from a lower value to a higher value with a big break in between. Why does this type of data not use 'pch' or 'type'. When I plot I don't indicate anywhere it is time. > head(data) Time Kbytes RSS Dirty