本文介绍了寻找互相关最大的滞后ccf()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有2个时间序列,我正在使用 ccf 查找它们之间的互相关。
ccf(ts1,ts2)列出了所有时滞的互相关。

I have 2 time series and I am using ccf to find the cross correlation between them.ccf(ts1, ts2) lists the cross-correlations for all time lags. How can I find the lag which results in maximum correlation without manually looking at the data?

推荐答案

发布答案

Find_Max_CCF<- function(a,b)
{
 d <- ccf(a, b, plot = FALSE)
 cor = d$acf[,,1]
 lag = d$lag[,,1]
 res = data.frame(cor,lag)
 res_max = res[which.max(res$cor),]
 return(res_max)
} 

这篇关于寻找互相关最大的滞后ccf()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 04:43