View source: R/matched_set_obj.R
print.matched.set | R Documentation |
Print matched.set objects.
## S3 method for class 'matched.set'
print(x, ..., verbose = FALSE)
x |
a |
... |
Not used. additional arguments to be passed to |
verbose |
logical indicating whether or not output should be printed in expanded/raw list form. The verbose form is not recommended unless the data set is small. Default is FALSE, which prints an overview of matched set sizes. |
dem.sub <- dem[dem[, "wbcode2"] <= 100, ]
# create subset of data for simplicity
dem.sub.panel <- PanelData(dem.sub, "wbcode2", "year", "dem", "y")
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)
print(extract(PM.results, qoi = "att"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.