Learn R Programming

fect (version 2.0.5)

print.fect: Print Results

Description

Print results of the matrix completion method.

Usage

# S3 method for fect
print(x, switch.on = TRUE,
       switch.off = FALSE,time.on.lim = NULL, time.off.lim = NULL, ...)

Value

No return value.

Arguments

x

a fect object.

switch.on

logical; if TRUE, print switch-on effect.

switch.off

logical; if TRUE, print switch-off effect.

time.on.lim

two-element numeric vector specifying the switch-on effect range.

time.off.lim

two-element numeric vector specifying the switch-off effect range.

...

other arguments.

Author

Licheng Liu; Ye Wang; Yiqing Xu; Ziyi Liu

References

Athey, S., Bayati, M., Doudchenko, N., Imbens, G., and Khosravi, K. (2021). Matrix completion methods for causal panel data models. Journal of the American Statistical Association, 116(536), 1716-1730.

Bai, J. (2009). Panel data models with interactive fixed effects. Econometrica, 77(4), 1229-1279.

Liu, L., Wang, Y., and Xu, Y. (2022). A Practical Guide to Counterfactual Estimators for Causal Inference with Time-Series Cross-Sectional Data. American Journal of Political Science, 68(1), 160-176.

Xu, Y. (2017). Generalized Synthetic Control Method: Causal Inference with Interactive Fixed Effects Models. Political Analysis, 25(1), 57-76.

See Also

fect, plot.fect

Examples

Run this code
library(fect)
data(fect)
out <- fect(Y ~ D + X1 + X2, data = simdata, 
            index = c("id","time"), force = "two-way",
            CV = TRUE, r = c(0, 5), se = 0, parallel = FALSE) 
print(out)

Run the code above in your browser using DataLab