Skip to content
Prev 132452 / 398506 Next

plotting magnitude

dkowalske at umassd.edu wrote:
Hi,

What you might want is something like this:

library(maps)
data(world2MapEnv)
map("world2",xlim=c(110,160),ylim=c(-45,-10))
axis(1)
axis(2)
library(plotrix)
draw.circle(155,-30,1,col="red")
draw.circle(155,-32,1.2,col="blue")
draw.circle(153,-34,1.5,col="green")

where 1, 1.2, 1.5 are the relative sizes of catch.
Oh, and you would probably want the North Atlantic part of the map...

Jim