Re: [R] Graph is without line

2013-09-25 Thread PIKAL Petr
.org > Subject: Re: [R] Graph is without line > > Hi, > Yes. It worked. Is 'stringAsFactors=FALSE' the switch to > use when reading data into a frame ? All the values I use are either > numbers or dates or strings. Sometimes while I manipulate the data by

Re: [R] Graph is without line

2013-09-24 Thread mohan . radhakrishnan
Jim Lemon To: mohan.radhakrish...@polarisft.com Cc: r-help@r-project.org Date: 09/25/2013 05:56 AM Subject: Re: [R] Graph is without line On 09/24/2013 10:46 PM, mohan.radhakrish...@polarisft.com wrote: > Hi, > Sometimes I get a graph like the attached one. The

Re: [R] Graph is without line

2013-09-24 Thread Jim Lemon
On 09/24/2013 10:46 PM, mohan.radhakrish...@polarisft.com wrote: Hi, Sometimes I get a graph like the attached one. The data type could have something to do with it. This graph does not use the color and does not draw a line. Earlier I used to convert the factors in the data frame to ano

Re: [R] Graph is without line

2013-09-24 Thread arun
Try: plot(as.numeric(data$Var1),data$Freq,ylim=c(0,700),col="green",type="o",ylab="",xlab="",las=2,lwd=2.5,xaxt="n") A.K. - Original Message - From: "mohan.radhakrish...@polarisft.com" To: r-help@r-project.org Cc: Sen

[R] Graph is without line

2013-09-24 Thread mohan . radhakrishnan
Hi, Sometimes I get a graph like the attached one. The data type could have something to do with it. This graph does not use the color and does not draw a line. Earlier I used to convert the factors in the data frame to another data type and drew the correct graphs. Any idea why this ha