-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Rglpk as a dependency * Removed tidyverse as package loading * Added mvtnorm as dependency * Squashed commit of the following: commit 3c3c4c53588b390f7ca8d5c78d5dff5cae7dc5ec Author: Mauricio Caceres <mauricio.caceres.bravo@gmail.com> Date: Wed Apr 5 14:53:19 2023 -0400 More explicit calls commit 9d01fe1 Author: Mauricio Caceres <mauricio.caceres.bravo@gmail.com> Date: Sat Apr 1 20:58:22 2023 -0400 Re-compiled from R studio; closes #24 commit b8cf9f2 Author: Mauricio Caceres <mauricio.caceres.bravo@gmail.com> Date: Sat Apr 1 20:42:14 2023 -0400 Added explicit calls to built-ins * Squashed commit of the following: commit b9d8af8 Author: Mauricio Caceres <mauricio.caceres.bravo@gmail.com> Date: Thu May 11 01:07:47 2023 -0400 Moved intro of staggered example into README commit 02b541b Author: Mauricio Caceres <mauricio.caceres.bravo@gmail.com> Date: Thu May 11 01:01:11 2023 -0400 Fixed potential integer overflow commit b4767b7 Author: Mauricio Caceres <mauricio.caceres.bravo@gmail.com> Date: Thu May 11 00:56:23 2023 -0400 Cleaned and moved honest_did function to own file * Several fixes/edits to pass CRAN check - Added matrixStats to Imports - Deleted ROI - Renamed doc -> vignettes - .compute_IDset_DeltaRMB_fixedS: biasDrection -> biasDirection - .create_A_M: A_I -> A_M - DeltaSD_upperBound_Mpre: stata -> stats - Changed title to Title Case - https://jonathandroth.github.io -> https://www.jonathandroth.com/ - Aligned man files with function definitions: - findOptimalFLCI - createSensitivityResults_relativeMagnitudes - computeConditionalCS_DeltaSDRMB - computeConditionalCS_DeltaSDM - computeConditionalCS_DeltaSDB - computeConditionalCS_DeltaSD - Added deltaSD.png, README to .Rbuildignore - Added VignetteBuilder and knitr to DESCRIPTION * Fixed Ashesh e-mail; removed library statements * Bumped version # * Added rmarkdown to build vignettes * Deleted keyword placeholders; moved doParallel to suggested packages
- Loading branch information
Showing
46 changed files
with
91 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
README | ||
deltaSD.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.Rproj.user | ||
*.Rcheck | ||
.Rhistory | ||
.RData | ||
.Ruserdata | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,35 @@ | ||
Package: HonestDiD | ||
Type: Package | ||
Title: Robust inference in difference-in-differences and event study designs | ||
Version: 0.2.2 | ||
Title: Robust Inference in Difference-in-Differences and Event Study Designs | ||
Version: 0.2.3 | ||
Depends: | ||
R (>= 3.6.0) | ||
Imports: | ||
stats, | ||
foreach (>= 1.4.7), | ||
doParallel (>= 1.0.15), | ||
matrixStats (>= 0.63.0), | ||
CVXR (>= 0.99-6), | ||
latex2exp (>= 0.4.0), | ||
lpSolveAPI (>= 5.5.2.0-17), | ||
Matrix (>= 1.2-17), | ||
pracma (>= 2.2.5), | ||
purrr (>= 0.3.4), | ||
ROI (>= 0.3-2), | ||
tibble (>= 1.3.4), | ||
dplyr (>= 0.7.4), | ||
ggplot2 (>= 2.2.1), | ||
Rglpk (>= 0.6-4), | ||
mvtnorm (>= 1.1-3), | ||
TruncatedNormal (>= 1.0) | ||
Author: Ashesh Rambachan | ||
Maintainer: Ashesh Rambachan <asheshr@g.harvard.edu> | ||
Description: | ||
This package provides functions to conduct robust inference in difference-in-differences and event study designs by implementing the methods developed in Rambachan & Roth (2021). Inference is conducted under a weaker version of the parallel trends assumption. Uniformly valid confidence sets are constructed based upon conditional confidence sets, fixed-length confidence sets and hybridized confidence sets. See Ashesh Rambachan & Jonathan Roth, "An Honest Approach to Parallel Trends", 2021 for details on the methods. | ||
Suggests: | ||
doParallel (>= 1.0.15), | ||
knitr, | ||
rmarkdown | ||
Author: Ashesh Rambachan <ashesh.a.rambachan@gmail.com> | ||
Maintainer: Ashesh Rambachan <ashesh.a.rambachan@gmail.com> | ||
Description: | ||
Provides functions to conduct robust inference in difference-in-differences and event study designs by implementing the methods developed in Rambachan & Roth (2021). Inference is conducted under a weaker version of the parallel trends assumption. Uniformly valid confidence sets are constructed based upon conditional confidence sets, fixed-length confidence sets and hybridized confidence sets. See Ashesh Rambachan & Jonathan Roth, "An Honest Approach to Parallel Trends", 2021 for details on the methods. | ||
License: GPL-3 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
VignetteBuilder: | ||
knitr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.