Makes 3 useful graphs for eda of times series
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.
simple.eda.ts(x, lag=1)
x |
a univariate vector of data |
lag |
a lag to give to the lag plot |
Makes the graph with 1 row, 3 columns
John Verzani
Downloaded from http://www.itl.nist.gov/div898/handbook/eda/section3/eda34.htm.
## 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))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.