I currently lag panel data using data.table in the following manner:
require(data.table)
x <- data.table(id=1:10, t=rep(1:10, each=10), v=1:100)
setkey(x, id, t) #so that things are in increasing order
x[,lag_v:=c(NA, v[1:(length(v)-1)]),by=id]
I am wondering if there is a better way to do this? I had found something online about cross-join, which makes sense. However, a cross-join would generate a fairly large data.table for a large dataset so I am hesitant to use it.

v[1:(length(v)-1)]is dangerous (think about what would happen for anidwith a single row). Usinghead(v, -1)as suggested below is the right thing to do. – flodel Oct 23 '12 at 0:54headsolution is certainly better – Alex Oct 23 '12 at 0:58