[R] Interactive maps

2015-04-24 Thread Antonio Serrano via R-help
Hello, all: I am new here, and have a challenge to present some graphical data to the user in a convenient way. The challenge is to present a map to the user which is coloured with the value of a variable. Say for example, temperature. This is a preexisting graph that I can generate in

Re: [R] Interactive maps

2015-04-25 Thread Antonio Serrano via R-help
al Message- From: Jim Lemon To: Antonio Serrano Cc: r-help mailing list Sent: Sat, Apr 25, 2015 5:47 am Subject: Re: [R] Interactive maps Hi Antonio, If you do create the map in R, you can use locator(). Jim On Sat, Apr 25, 2015 at 8:37 AM, Antonio Serrano via R-help wrote: > > Hello,

Re: [R] Interactive maps

2015-04-27 Thread Antonio Serrano via R-help
know how to read a graphic image into R to work with it. >> How can I read > a pre-exisiting image into R?. >> >> Thanks again >> >> >> Antonio Serrano >> > aasde...@aim.com >> ن >> >> >> -Original Message- >>

Re: [R] Interactive maps

2015-04-28 Thread Antonio Serrano via R-help
suspect it would easy for you to write to this format from Fortran. See the details here: http://cran.r-project.org/web/packages/raster/vignettes/rasterfile.pdf Cheers, Ben On Apr 27, 2015, at 11:55 AM, Antonio Serrano via R-help wrote: > > > Ok. > > > The point no

Re: [R] Plotting legend outside of chart area

2015-06-25 Thread Antonio Serrano via R-help
First, you have to increase the bottom margin to have enough space for the legend. You do it like this: par( mar = c(6,4,4,2) ) >From R help: ‘mar’ A numerical vector of the form ‘c(bottom, left, top, right)’ which gives the number of lines of margin to be specified on

Re: [R] Plotting legend outside of chart area

2015-06-26 Thread Antonio Serrano via R-help
First, you have to increase the bottom margin to have enough space for the legend. You do it like this: par( mar = c(6,4,4,2) ) From R help: ‘mar’ A numerical vector of the form ‘c(bottom, left, top, right)’ which gives the number of lines of margin to be specified on