PanelData | R Documentation |
Pre-process and balance panel data
PanelData(panel.data, unit.id, time.id, treatment, outcome)
panel.data |
A |
unit.id |
A character string indicating the name of unit identifier in the data. This data must be integer. |
time.id |
A character string indicating the name of the time variable in the data. |
treatment |
A character string indicating the name of the treatment variable. The treatment must be a binary indicator variable (integer with 0 for the control group and 1 for the treatment group). |
outcome |
A character string identifying the outcome variable |
PanelData()
returns an object of class PanelData
. This takes the form of a data.frame
object with the following properties and attributes. First, the data has been balanced and sorted. These properties are noted in the "is.balanced" and "is.sorted" attributes, respectively. So, each unit appears the same number of times in the resulting PanelData
object, with NAs filling out missing data. Second, the data has been sorted to appear in order for each unit. Next, the PanelData
object has the following attributes: "unit.id", "time.id", "treatment", and "outcome" reflecting the variables provided in the specification. If the function attempts to automatically convert time data to be consecutive integers, the mapping between the original time data and the "new" converted time data is provided as a data.frame
object and stored as the "time.data.map" attribute.
d <- PanelData(panel.data = dem,
unit.id = "wbcode2",
time.id = "year",
treatment = "dem",
outcome = "y")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.