Re: [R] axis in r plot

2012-06-25 Thread Petr PIKAL
Hi > > I have the graph plotted with x axis(-50 to 250) and y axis (-50 to 500).I > need the x axis values(-50 to 250) with spacing between two tick marks as > 1or 0.1.The graph should be wider to get enough resolution. For the first case you shall have some special display as you will need a

Re: [R] axis in r plot

2012-06-25 Thread sathya7priya
I have the graph plotted with x axis(-50 to 250) and y axis (-50 to 500).I need the x axis values(-50 to 250) with spacing between two tick marks as 1or 0.1.The graph should be wider to get enough resolution. -- View this message in context: http://r.789695.n4.nabble.com/axis-in-r-plot-tp4634199

Re: [R] axis in r plot

2012-06-24 Thread sathya7priya
I need to increase the size of the graph by increasing the spacing between each tickmarks. -- View this message in context: http://r.789695.n4.nabble.com/axis-in-r-plot-tp4634199p4634383.html Sent from the R help mailing list archive at Nabble.com. __

Re: [R] axis in r plot

2012-06-22 Thread Jim Lemon
On 06/22/2012 09:51 PM, sathya7priya wrote: I have a graph plotted in r.The x axis tickmarks are at 0,5,10. I need a graph with resolution of tickmarks at 0.1 interval.When i place tickmarks of 0.1 intervals using the following command axis(1, at=seq(0,5,0.1), cex.axis=0.7, las=2) I only get t

Re: [R] axis in r plot

2012-06-22 Thread S Ellison
Perhaps you meant ... at=seq(0,5,1) ? S From: r-help-boun...@r-project.org [r-help-boun...@r-project.org] On Behalf Of sathya7priya [sathya7pr...@gmail.com] Sent: 22 June 2012 12:51 To: r-help@r-project.org Subject: [R] axis in r plot I have a graph

Re: [R] axis in r plot

2012-06-22 Thread Sarah Goslee
On Fri, Jun 22, 2012 at 7:51 AM, sathya7priya wrote: > I have a graph plotted in r.The x axis tickmarks are at 0,5,10. I need a > graph with resolution of tickmarks at 0.1 interval.When i place tickmarks of > 0.1 intervals using the following command   axis(1, at=seq(0,5,0.1), > cex.axis=0.7, las=

[R] axis in r plot

2012-06-22 Thread sathya7priya
I have a graph plotted in r.The x axis tickmarks are at 0,5,10. I need a graph with resolution of tickmarks at 0.1 interval.When i place tickmarks of 0.1 intervals using the following command axis(1, at=seq(0,5,0.1), cex.axis=0.7, las=2) I only get the tickmarks of 0.1 interval that are very clo