• Stars
    star
    143
  • Rank 257,007 (Top 6 %)
  • Language
    R
  • License
    MIT License
  • Created about 6 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Augmented Synthetic Control Method

augsynth: Augmented Synthetic Control Method

Build Status Project Status: Active  The project has reached a stable, usable state and is being actively developed.License: MIT

Overview

This package implements the Augmented Synthetic Control Method (ASCM).

For a more detailed description of the main functionality check out:

Installation

To install this package, first ensure that devtools is installed with

install.packages("devtools")

then install the package from GitHub with

devtools::install_github("ebenmichael/augsynth")

Basic usage

To get started, use a panel dataset with an outcome measure, a treatment indicator, a unit indicator, a time variable, and an intervention time t_int. Then run

asyn <- augsynth(outcome ~ trt, unit, time, t_int, data)