Learn R Programming

kcpRS (version 1.1.1)

runCorr: 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)

Value

Running correlations time series

Arguments

data

N x v dataframe where N is the no. of time points and v the no. of variables

wsize

window size

Examples

Run this code
data(MentalLoad)
RS<-runCorr(data=MentalLoad,wsize=25)
ts.plot(RS, gpars=list(xlab="Window", ylab="Correlations", col=1:3,lwd=2))

Run the code above in your browser using DataLab