print.PanelEstimate: Print point estimates and standard errors

View source: R/PanelEstimateObject.R

print.PanelEstimateR Documentation

Print point estimates and standard errors

Description

Print point estimates and standard errors

Usage

## S3 method for class 'PanelEstimate'
print(x, ...)

Arguments

x

PanelEstimate object

...

additional arguments to be passed to print.data.frame()

Examples

dem.sub <- dem[dem[, "wbcode2"] <= 100, ]
dem.sub.panel <- PanelData(dem.sub, "wbcode2", "year", "dem", "y")
# create subset of data for simplicity
PM.results <- PanelMatch(panel.data = dem.sub.panel, lag = 4, 
                         refinement.method = "ps.match", 
                         match.missing = TRUE, 
                         covs.formula = ~ tradewb,
                         size.match = 5, qoi = "att",
                         lead = 0:4, 
                         forbid.treatment.reversal = FALSE)
PE.results <- PanelEstimate(sets = PM.results, 
              panel.data = dem.sub.panel, 
              se.method = "unconditional")
print(PE.results)

PanelMatch documentation built on April 3, 2025, 6:34 p.m.