multigraph {ssEDA}R Documentation

Plot Multiple Graphs

Description

Graph of multiple plots of events satisfying selection criteria.

Usage

multigraph(events, plots, ncols=1, title="", criteria=TRUE)

Arguments

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.

See Also

depth.hist, freq.cusum, freq.magnitude, magnitude.cusum, magnitude.time, epicentres, threeD, timeplot

Examples

#    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")

[Package ssEDA version 2.2-1 Index]