Skip to content
Prev 132414 / 398506 Next

plotting magnitude

On Dec 18, 2007 2:06 PM, <dkowalske at umassd.edu> wrote:
This is pretty easy to do with the ggplot2 package:

library(ggplot2)
qplot(longdeg, latdeg, data = data, facets = . ~ vessek, size = catch)

or maybe
qplot(longdeg, latdeg, data = data, facets = . ~ vessek, size = catch)
+ scale_area()

if you want the area of the points proportional to the catch, rather
than their radius

Hadley