simple.eda.ts {UsingR}R Documentation

Makes 3 useful graphs for eda of times series

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 where k=1 by default) and an autocorrelation plot from the times series ("ts") package.

Usage

simple.eda.ts(x, lag=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

## 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))

[Package UsingR version 2.0-7 Index]