simple.eda.ts: Makes 3 useful graphs for eda of times series

Description Usage Arguments Value Author(s) References Examples

Description

This makes 3 graphs to check for serial correlation in data. The graphs are a sequential plot (i vs X_i), a lag plot (plotting X_i vs X_{i+k} where k=1 by default) and an autocorrelation plot from the times series ("ts") package.

Usage

1

Arguments

x

a univariate vector of data

lag

a lag to give to the lag plot

Value

Makes the graph with 1 row, 3 columns

Author(s)

John Verzani

References

Downloaded from http://www.itl.nist.gov/div898/handbook/eda/section3/eda34.htm.

Examples

1
2
3
4
5
6
## The function is currently defined as

## look for no correlation
x <- rnorm(100);simple.eda.ts(x)
## you will find correlation here
simple.eda.ts(cumsum(x))

jverzani/UsingR documentation built on Aug. 3, 2020, 11:57 a.m.