2
votes
1answer
155 views

How to efficiently extrapolate missing data for multiple variables

I have panel data and numerous variables are missing observations before certain years. The years vary across variables. What is an efficient way to extrapolate for missing data points across multiple ...
0
votes
2answers
564 views

Time series prediction using R

I have the following R code library(forecast) value <- c(1.2, 1.7, 1.6, 1.2, 1.6, 1.3, 1.5, 1.9, 5.4, 4.2, 5.5, 6, 5.6, 6.2, 6.8, 7.1, 7.1, 5.8, 0, 5.2, 4.6, 3.6, 3, 3.8, 3.1, 3.4, 2, 3.1, 3.2, ...
0
votes
2answers
115 views

Appropriate ways to smooth a periodic time series?

I have a periodic time series, of air temperature over several years, and I want to be able to predict future values for it. I've calculated the average over the available years of the value at each ...
3
votes
1answer
380 views

Recursive time series segmentation algorithm

Im doing Time series analysis on stock market data and trying to implement an algorithm for piecewise linear segmentation, which is as follows : split(T [ta, tb ]) – split a time series T of ...
0
votes
2answers
2k views

How to use aryule() in Matlab to extend a number series?

I have a series of numbers. I calculated the "auto-regression" between them using Yule-Walker method. But now how do I extend the series? Whole working is as follows: a) the series I use: ...
2
votes
4answers
3k views

Linear regression for time series with Gnuplot

I am a big fan of Gnuplot and I used it all along my studies for various projects. Lately I wanted to use Gnuplot to chart some time series like weight loss, exercising results, gas consumptions etc. ...