Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个时间序列数据。我需要找到这两个变量之间的时间差。这两个数据集中的日期并不重合,但它们在同一时间段内。我想知道这是否可能。有谁知道怎么做?:)
正如 Dieter Menne 所说,互相关可能会有所帮助。例如
x <- c(1,2,1,9,1,3,2,1,3,2) y <- c(7,9,8,7,9,8,1,7,9,8) ccf(x, y)
生产
表明主要影响x比 in早 3 个值发生,y并且关系为负。现实生活中的示例通常不会显示这样一个峰值。
x
y