3

Specifically, I have a time series with fixed $\Delta t$ of the following form: $x_0, x_1, x_2, ... x_n$ and $t_0, t_1, t_2, ... t_n$ where $t_{i+1}-t_i =\Delta t $.

I'm interested in the improved efficiency for large data sets, if it is possible to simplify linear regression in this context.

Edit: I editet the title since equispaced is an important property.

JHK
  • 131

1 Answers1

5

In fact in linear regression it's already assumed that the predictor variable (IV) has no error.

If not for that, you'd have errors-in-variables regression (though it has various other names). OLS is biased in this case.

So there's no opportunity for efficiency when you impose a condition that's already assumed.

There is some opportunity for some efficiency gain because the $t$'s are equispaced.

However, if you need to refit these models each time a new data point arrives, then there are larger opportunities for gain.

A warning, too, about fitting regression to time series; it must be done with care.

Glen_b
  • 282,281