Skip to content

Commit

Permalink
Merge pull request #9 from isidorogu/lm_robust
Browse files Browse the repository at this point in the history
Fixing notes from testing
  • Loading branch information
isidorogu authored Feb 19, 2024
2 parents 8e37191 + 3512635 commit a9c6644
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
7 changes: 7 additions & 0 deletions R/impact_eval.R
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ impact_eval <- function(data, endogenous_vars, treatment,
fixed_effect_vars = NULL, control_vars, cluster_var) {

# Defining type of standard errors based & cluster_arg on the presence of cluster vars
outcome<-NULL
term<-NULL
estimate<-NULL
p.value<-NULL
std.error<-NULL
statistic<-NULL

if (missing(cluster_var)) {
se_type = "classical"
clusters = NULL
Expand Down
13 changes: 7 additions & 6 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
## Test environments
* local MacOS install, R 4.0.0
* x86_64-pc-linux-gnu (64 bit) (on travis-ci), R 4.0.0
* Rhub Windows Server 2008 R2, R-devel (32/64) bit
* Win builder x86_64-w64-mingw32, Rdevel


* local MacOS install, R 4.3.2
* mcaos 12.7.3 (R-release) on Github actions (GHA)
* Microsoft Windows Server 2022 (R-release) on Github actions
* Microsoft Windows x86_64-w64-mingw32 R-devel from (Rhub)
* ubuntu 22.04.03 (R-devel) on GHA
* ubuntu 22.04.03 (R-release) on GHA
* ubuntu 22.04.03 (R-oldrel-1) on GHA

## R CMD check results
There were no ERRORs, WARNINGs Nor NOTEs.
Expand Down
2 changes: 1 addition & 1 deletion inst/CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ citHeader("To cite RCT in publications use:")

citEntry(entry = "Manual",
title = "Design and Evaluation of RCTs with {RCT}",
author = personList(as.person("Isidoro Garcia-Urquieta")),
author = c(as.person("Isidoro Garcia-Urquieta")),
year = "2020",
url = "https://github.com/isidorogu/RCT",

Expand Down

0 comments on commit a9c6644

Please sign in to comment.