Temporal Terms (Lag/Lead)
When working with time series data it is common to want to access past or future values of your predictors. These are called lagged (past) or lead (future) variables.
StatsModels supports basic lead and lag functionality:
lag(x, n)
accesses data for variablex
fromn
rows (time steps) ago.lead(x, n)
accesses data for variablex
fromn
rows (time steps) ahead.
In both cases, n
can be omitted, and it defaults to 1
row. missing
is used for any entries that are lagged or lead out of the table.
Note that this is a purely structural lead/lag term: it is unaware of any time index of the data. It is up to the user to ensure the data is sorted, and following a regular time interval, which may require inserting additional rows containing missing
s to fill in gaps in irregular data.
Below is a simple example:
julia> using StatsModels, DataFrames
julia> df = DataFrame(y=1:5, x=2:2:10)
5×2 DataFrames.DataFrame
│ Row │ y │ x │
│ │ Int64 │ Int64 │
├─────┼───────┼───────┤
│ 1 │ 1 │ 2 │
│ 2 │ 2 │ 4 │
│ 3 │ 3 │ 6 │
│ 4 │ 4 │ 8 │
│ 5 │ 5 │ 10 │
julia> f = @formula(y ~ x + lag(x, 2) + lead(x, 2))
FormulaTerm
Response:
y(unknown)
Predictors:
x(unknown)
(x)->lag(x, 2)
(x)->lead(x, 2)
julia> f = apply_schema(f, schema(f, df))
FormulaTerm
Response:
y(continuous)
Predictors:
x(continuous)
lag(x, 2)
lead(x, 2)
julia> modelmatrix(f, df)
5×3 reshape(::Array{Union{Missing, Int64},2}, 5, 3) with eltype Union{Missing, Int64}:
2 missing 6
4 missing 8
6 2 10
8 4 missing
10 6 missing