diff options
Diffstat (limited to 'man')
-rw-r--r-- | man/compare.Rd | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/man/compare.Rd b/man/compare.Rd new file mode 100644 index 0000000..3a40549 --- /dev/null +++ b/man/compare.Rd @@ -0,0 +1,25 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/predict.R +\name{compare} +\alias{compare} +\title{Compare the measured output and the predicted output(s)} +\usage{ +compare(data, nahead = 1, ...) +} +\arguments{ +\item{data}{validation data in the form of an \code{idframe} object} + +\item{nahead}{number of steps ahead at which to predict} + +\item{\ldots}{models whose predictions are to be compared} +} +\description{ +Plots the output predictions of model(s) superimposed over validation data, +data, for comparison. +} +\examples{ +data(arxsim) +compare(data,nahead=1,mod1,mod2,mod3) + +} + |