# NOT RUN {
oldopts <- options(lfe.threads=1)
## create individual and firm
id <- factor(sample(5000,50000,replace=TRUE))
firm <- factor(sample(3000,50000,replace=TRUE))
## create some estimable functions. It's faster to
## use numerical indices in ef rather than strings, and the input v
## to ef has no names, we have to add them when requested
ef <- function(v,addnames) {
w <- c(v[6]-v[5],v[7000]+v[5],v[7000]-v[6000])
if(addnames) names(w) <-c('id6-id5','f2k+id5','f2k-f1k')
w
}
is.estimable(ef,list(id=id,firm=firm))
## Then make an error; in the last coordinate, sum two firms
ef <- function(v,addnames) {
w <- c(v[6]-v[5],v[7000]+v[5],v[7000]+v[6000])
if(addnames) names(w) <-c('id6-id5','f2k+id5','f2k-f1k')
w
}
is.estimable(ef, list(id=id,firm=firm), keepdiff=TRUE)
options(oldopts)
# }
Run the code above in your browser using DataLab