Skip to contents

Print results of interactive fixed effects estimation.

Usage

# S3 method for interFE
print(x, ...)

Arguments

x

an interFE object.

...

other argv.

Author

Licheng Liu; Ye Wang; Yiqing Xu

Value

No return value.

References

Jushan Bai. 2009. "Panel Data Models with Interactive Fixed Effects." Econometrica 77:1229--1279.

See also

Examples

library(fect)
data(fect)
d <- simdata1[-(1:150),] # remove the treated units
out <- interFE(Y ~ X1 + X2, data = d, index=c("id","time"),
               r = 2, force = "two-way", nboots = 50)
#> Bootstraping...
#> 
print(out)
#> Call:
#> interFE.formula(formula = Y ~ X1 + X2, data = d, index = c("id", 
#>     "time"), r = 2, force = "two-way", nboots = 50)
#> 
#> Estimated Coefficients:
#>           Coef    S.E. CI.lower CI.upper p.value
#> X1      0.9774 0.03086   0.9129    1.032       0
#> X2      3.0044 0.02461   2.9612    3.047       0
#> _const 11.4939 0.27681  11.1014   12.064       0