reg.callback_comp {callback}R Documentation

Component model estimation

Description

Component model estimation

Usage

## S3 method for class 'callback_comp'
reg(x, method = "fgls", ...)

Arguments

x

a callback_comp object.

method

estimation method, "ols" or "fgls" (the default).

...

further arguments passed to or from other methods.

Value

a list with class callback_reg containing "config" for the definition of the estimation method and "reg" for the estimation output.

The "config" data frame includes the following elements:

The list "reg" includes the following elements (when relevant):

References

Duguet E., Le Gall R., L'Horty Y., Petit P. (2018). How does the labour market history influence the access to hiring interviews? International Journal of Manpower, 39(4), 519-533, doi: 10.1108/IJM-09-2017-0231.

Examples

model <- list(c("license"),c("woman"),c("woman","license","inter"))
comp <- callback_comp(data = mobility1, cluster = "offer", 
candid = c("gender","licenses"), callback = "callback", model = model)
reg(comp)
summary(reg(comp))


[Package callback version 0.1.3 Index]