runCorr {kcpRS} | R Documentation |
Running Correlations
Description
Extracts the running correlations by sliding a window comprised of wsize
time points, and in each window,
the correlation of each pair of variables is computed.
Each time the window is slid, the oldest time point is discarded and the latest time point is added.
Usage
runCorr(data, wsize = 25)
Arguments
data |
N x v dataframe where N is the no. of time points and v the no. of variables |
wsize |
window size |
Value
Running correlations time series
Examples
data(MentalLoad)
RS<-runCorr(data=MentalLoad,wsize=25)
ts.plot(RS, gpars=list(xlab="Window", ylab="Correlations", col=1:3,lwd=2))
[Package kcpRS version 1.1.1 Index]