View source: R/plot.seas.change.r
plot.seas.change | R Documentation |
Plot percent change from previous season
## S3 method for class 'seas.change'
plot(
sr,
box = NULL,
col = fields::tim.colors(100),
par = c(2, 2),
mar = c(2, 2, 2, 2)
)
sr |
list of seasonal raster results from |
box |
overlay of boxes for transfer areas |
a plot
# after running make.sim.track.par
simdatdf = ldply(simdat)
simdatdf$seas[simdatdf$Month%in%c(1,2,3)] = 1
simdatdf$seas[simdatdf$Month%in%c(4,5,6)] = 2
simdatdf$seas[simdatdf$Month%in%c(7,8,9)] = 3
simdatdf$seas[simdatdf$Month%in%c(10,11,12)] = 4
sr = dlply(simdatdf, 'seas', function(x) make.sim.raster(x, boxsize=60))
plot.seas.change(sr)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.