Skip to content
Prev 23469 / 29559 Next

Spatial Durbin Model with regimes in a cross section framework

On Thu, 1 Oct 2015, Loredana Mirra wrote:

            
How do you want to handle the "regimes"? Estimate separate coefficients 
for each regime (regime defined as a factor)? If so, this is a standard 
formula construction, and can be used with formula objects in model 
fitting functions:

lm(mpg ~ 0 + I(factor(am))/(disp + wt), data=mtcars)

or similar - check in detailed discussions of formula objects.

You need to be careful to report impacts, not coefficient values, from the 
Spatial Durbin model.

Hope this helps,

Roger