PanelData: Pre-process and balance panel data

View source: R/PanelData.R

PanelDataR Documentation

Pre-process and balance panel data

Description

Pre-process and balance panel data

Usage

PanelData(panel.data, unit.id, time.id, treatment, outcome)

Arguments

panel.data

A data.frame object containing time series cross sectional data. Time data should be sequential integers that increase by 1. Unit identifiers must be integers. Treatment data must be binary. If time data is non-integer, the package will attempt to sensibly convert it by converting the data to factor, then to integer. If a conversion is performed, a mapping will be returned as an attribute called "time.data.map"

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

Value

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.

Examples

d <- PanelData(panel.data = dem, 
               unit.id = "wbcode2", 
               time.id = "year", 
               treatment = "dem", 
               outcome = "y")

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