Learn R Programming

EGRET (version 2.3.0)

multiPlotDataOverview: Produces a 4 panel plot that gives an overview of the data set prior to any processing

Description

The four plots produced are 1) log concentration versus log discharge, 2) log concentration versus time 3) a boxplot of log concentration by month, and 4) a side-by-side boxplot of the sampled discharges and all daily discharges. To save space, the graphic is labeled only at the top of the 4 graph display. Although there are a lot of optional arguments to this function, most are set to a logical default.

Usage

multiPlotDataOverview(eList, qUnit = 2, cex.main = 1.2,
  logScaleConc = TRUE, logScaleQ = TRUE)

Arguments

eList
named list with at least Daily, Sample, and INFO dataframes
qUnit
object of qUnit class printqUnitCheatSheet, or numeric represented the short code, or character representing the descriptive name.
cex.main
magnification to be used for main titles relative to the current setting of cex
logScaleConc
logical if TRUE y in concentration graphs plotted in log axis. Default is TRUE.
logScaleQ
logical if TRUE y in streamflow graphs plotted in log axis. Default is TRUE.

See Also

plotConcQ, boxConcMonth, plotConcTime, boxQTwice

Examples

Run this code
eList <- Choptank_eList
# Water year:
multiPlotDataOverview(eList, qUnit=1)
# Graphs consisting of Jun-Aug
eList <- setPA(eList, paStart=6,paLong=3)
multiPlotDataOverview(eList, qUnit=1)

Run the code above in your browser using DataLab