spT.segment.plot: Utility plot for prediction/forecast

Description Usage Arguments See Also Examples

View source: R/useful_commands.R

Description

This function is used to obtain scatter plots with 95 percent CI for predictions/forecasts.

Usage

1
spT.segment.plot(obs, est, up, low, limit = NULL)

Arguments

obs

Observed values.

est

Estimated values.

up

Upper limit of the estimated values.

low

Lower limit of the estimated values.

limit

x-axis and y-axis limits.

See Also

summary.spT, plot.spT.

Examples

1
2
3
4
5
6
7
8
9
##

obs<-rnorm(10,15,1)
est<-rnorm(10,15,1.5)
up<-rnorm(10,25,0.5)
low<-rnorm(10,5,0.5)
spT.segment.plot(obs,est,up,low,limit=c(0,30)) 

##

jmarca/spTimer documentation built on May 19, 2019, 1:51 p.m.