Re: [R] Help in Plotting in "fArma" Package

2018-01-27 Thread Moyukh Laha
Thank you very much. Will try this. On Fri, Jan 26, 2018 at 11:34 PM, David Winsemius wrote: > > > On Jan 26, 2018, at 9:51 AM, MacQueen, Don wrote: > > > > What Dave said, plus here's a hint. Try this example (which uses base > graphics): > > > > plot(1:5) > > plot(1:5, cex.lab=2) > > > > Then

Re: [R] Help in Plotting in "fArma" Package

2018-01-26 Thread David Winsemius
> On Jan 26, 2018, at 9:51 AM, MacQueen, Don wrote: > > What Dave said, plus here's a hint. Try this example (which uses base > graphics): > > plot(1:5) > plot(1:5, cex.lab=2) > > Then look at the help page for par > help('par') > or > ?par > to search for other graphics parameters (base

Re: [R] Help in Plotting in "fArma" Package

2018-01-26 Thread MacQueen, Don
What Dave said, plus here's a hint. Try this example (which uses base graphics): plot(1:5) plot(1:5, cex.lab=2) Then look at the help page for par help('par') or ?par to search for other graphics parameters (base graphics) you can use to change various things. Success will depend, as Dave

Re: [R] Help in Plotting in "fArma" Package

2018-01-25 Thread David Winsemius
The documentation say that additional arguments will be passed. I suspect this will be a base graphics plot. You should look at the code of plot.rsfit to determine which arguments get processed. Sent from my iPhone > On Jan 25, 2018, at 10:30 AM, Moyukh Laha wrote: > > Hello, >I am n

Re: [R] Help in plotting

2016-07-31 Thread David Winsemius
> On Jul 31, 2016, at 8:07 AM, Bhaskar Mitra wrote: > > Hello Everyone, > > > I have a data frame with 2 columns as shown at the end of this mail. I want > to plot the data in column A; > however I want the data-points in column A to be of different color based > on conditions in column B. >

Re: [R] Help in plotting a legend

2009-08-26 Thread Jim Lemon
Ashutosh Nandeshwar wrote: Hello, List, I am a new user of the R project, and I need some help in plotting a legend. I am using the PBSmapping library to plot map of Ohio and heat color it with the count of employees in each county. As a guide, I am using "Data Mashups in R." I am able to pl

Re: [R] help in plotting

2007-11-25 Thread David Winsemius
Duncan Murdoch <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]: > On 25/11/2007 1:00 PM, John Kane wrote: >> That code seems to put the legend basically out of >> range. >> >> For the last line try x= 8 rather than 10. >> >> legend(x=8,y=.3,paste("Scale=",c(1,2,4,8)),lty=1:4) > > Or use on

Re: [R] help in plotting

2007-11-25 Thread Duncan Murdoch
On 25/11/2007 1:00 PM, John Kane wrote: > That code seems to put the legend basically out of > range. > > For the last line try x= 8 rather than 10. > > legend(x=8,y=.3,paste("Scale=",c(1,2,4,8)),lty=1:4) Or use one of the named locations, e.g. legend("topright",paste("Scale=",c(1,2,4,8)),lty=1

Re: [R] help in plotting

2007-11-25 Thread John Kane
That code seems to put the legend basically out of range. For the last line try x= 8 rather than 10. legend(x=8,y=.3,paste("Scale=",c(1,2,4,8)),lty=1:4) --- David Winsemius <[EMAIL PROTECTED]> wrote: > "G Ilhamto" <[EMAIL PROTECTED]> wrote in > news:[EMAIL PROTECTED]: > > > > I want to combin

Re: [R] help in plotting

2007-11-24 Thread David Winsemius
David Winsemius <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]: > > This is a worked example taken from Seefeld and Kim's monograph: > Sorry, boloxed the authors. By Kim Seefeld and Ernst Linder. -- David Winsemius __

Re: [R] help in plotting

2007-11-24 Thread David Winsemius
"G Ilhamto" <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]: > I want to combine several plots in one graph. > I did this: plot(a1); plot(a2, add=TRUE); ...plot(a5, add=TRUE) > The problem is the more plot we put, the more complex the graph. > Is there any way to label each line; or other way

Re: [R] help in plotting

2007-11-24 Thread jim holtman
You can use color (col=), line type (lty=), line width (lwd=), plot character (pch=) --- take you choice. \the more plot we put, the more complex the graph. > Is there any way to label each line; or other way just to make sure I know > which one which? > > Thank you for the help, > Ilham > >