Open p-wegmueller opened 3 years ago
Does it complain about 'unused argument (fixed.coef ...'?
You need to use the version from the experimental branch:
remotes::install_github("christophsax/tempdisagg", ref = "fixed-coef")
Habe die Entwicklerversion installiert. Die Fehlermeldung ist:
Fehler in X %*% z$coefficients : nicht passende Argumente
Gotcha. The intercept needs also a coefficient. This works:
td(y ~ x1 + x2,
fixed.coef = c(-2194.898, 1.241e+01, 1.339e-02),
fixed.rho = 0,
method = "chow-lin-fixed")
Cool! Danke! Related question: how do you optimally choose the coefficients in such a setting?