View source: R/PanelMatchObject.R
summary.PanelMatch | R Documentation |
A method for viewing summary data about the sizes of matched sets and metadata about how they were created. This method
accepts all standard summary
arguments. If the quantity of interest is ate, then a summary will be provided for the matched sets associated with the att and the atc.
## S3 method for class 'PanelMatch'
summary(object, ..., verbose = FALSE)
object |
a |
... |
Optional additional arguments to be passed to the |
verbose |
Logical value specifying whether or not a longer, more verbose summary should be calculated and returned. Default is |
A list of lists containing a summary of the matched sets associated with the specified qoi. Each sublist object will either have 5 or 1 element(s), depending on whether or not verbose
is set to TRUE
or not.
overview |
A |
set.size.summary |
a |
number.of.treated.units |
The number of unit, time pairs that are considered to be "treated" units |
num.units.empty.set |
The number of units treated at a particular time that were not able to be matched to any control units |
lag |
The size of the lag window used for matching on treatment history. This affects which treated and control units are matched. |
dem.sub <- dem[dem[, "wbcode2"] <= 100, ]
dem.sub.panel <- PanelData(dem.sub, "wbcode2", "year", "dem", "y")
PM.results <- PanelMatch(panel.data = dem.sub.panel,
lag = 4,
refinement.method = "mahalanobis",
match.missing = TRUE,
covs.formula = ~ I(lag(tradewb, 1:4)) + I(lag(y, 1:4)),
size.match = 5, qoi = "att",
lead = 0:4, forbid.treatment.reversal = FALSE)
summary(PM.results)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.