bouss.plot: A simple plot function

Description Usage Arguments Examples

View source: R/GDAPlot.R

Description

This function lets you plot the estimated groundwater response variable (water depth or discharge) against the observed and provides a bunch of objective function statistics. It includes the option for start and end times for the plot.

Usage

1
2
bouss.plot(EstimatedTimeseries, ObservedTimeseries, startDate = NULL,
  endDate = NULL)

Arguments

EstimatedTimeseries
ObservedTimeseries
StartDate

A date in YYYY-MM-dd format. Defaults to the minimum of the input timeseries'

EndtDate

A date in YYYY-MM-dd format. Defaults to the maximum of the input time series'

Examples

1
2
3
4
5
6
fishRecharge<-vadose.recharge(ZoneStorageTime=c(4,3,3,3),AquiferZoneDryFractions = list(c(0.8,0.8,0.8,0.8),c(0,0,0,0),c(0,0,0.193,0.8263)),AquiferZoneIrrigFractions=list(c(0,0,0,0),c(0,0,0,0),c(0,0,0.0069,0.1737)),RiverRechargeFractions=c(1,1,0.958,1),RechargeFileName="GoldenBayLandSurfaceRechargeData.csv")
fishDischarge <- bouss.eigen(WellDistance=66000,ZoneLengths=c(35600,5700,8900,15800),Storativity=0.01,Transmisivity=313632,DischargeScaleFactor=950,RechargeData=fishRecharge,GWBypassFlow=1)
Observed <- read.csv("Observeddata.csv")
library(zoo)
ObservedZoo <- read.zoo(Observeddata,format="%d/%m/%Y")
bouss.plot(fishDischarge[,4],ObserveddataZoo$FishCreekDischarge)

Aqualinc/GDATools documentation built on May 5, 2019, 7:05 a.m.