| multigraph {ssEDA} | R Documentation |
Graph of multiple plots of events satisfying selection criteria.
multigraph(events, plots, ncols=1, title="", criteria=TRUE)
events |
defines the events to be plotted. It is an object of class "subset", generally created by subsetcircle, subsetpolygon, subsetrect or subsetsphere.
|
plots |
list object of plot functions. Plot functions that can be included
are those with the single events argument. Some of these are:
depth.hist, freq.cusum,
freq.magnitude, magnitude.cusum,
magnitude.time, timeplot.
|
ncols |
number of columns. Graphs are laid out in a matrix format, positions being filled row by row. |
title |
overall title for the collection of all graphs. |
criteria |
logical, default is TRUE. Determines whether the subsetting criteria is written at the bottom of the page.
|
depth.hist, freq.cusum,
freq.magnitude, magnitude.cusum,
magnitude.time, epicentres, threeD,
timeplot
# This example requires the NZ catalogue
require(ssNZ)
b <- subsetrect(NZ, minday=julian(1,1,1964), maxday=julian(1,1,1994),
mindepth=40, maxdepth=120, minmag=4)
multigraph(b,list(depth.hist, timeplot, magnitude.time,
freq.magnitude, freq.cusum, magnitude.cusum),
ncols=3, title="Catalogue Completeness Analysis")