Correlate time-series
51 次查看(过去 30 天)
显示 更早的评论
Hi,
I have timeseries data that oscillates around 0 (from -2 to +2) for 50 years.
I want to correlate this with temperature data.
The temp data is not normally distributed - so only kendall tau correlation possible.
Problem, the time-series daya is 160 rows, but the temp data only 80.
The rows must be equal size for Matlab to perform the correlaton.
Please help with my code.
Thank you.
0 个评论
采纳的回答
Adam Danz
2019-12-17
编辑:Adam Danz
2019-12-18
You can use vq = interp1(x,v,xq) to interpolate the temp data so that it has 160 values. Then use R = corrcoef(A,B) to compute the correlation coefficient between the two time series. If one time series is shifted relative to the other, you may want to consider the cross correlation to measure the lag: r = xcorr(x,y).
2 个评论
Adam Danz
2019-12-28
Check out the documentation for the Xq variable
You could either use a scalar to define the number of points in the interpolated output or you could define a vector of x values that defines the sample points.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time Series 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!