Skip to content

Commit

Permalink
further cran submission error fixes related to suggests & vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
s3alfisc committed Aug 1, 2021
1 parent 8c74535 commit bf3d289
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
## Version 0.3.6 submission, Resubmission 2

+ Another error due to "noSuggests" / vignette - package fixest was used, but not loaded


## Version 0.3.6 submission, Resubmission

+ Adressed errors related to suggestsdescribed below (reason for error; unprotected library(lfe) statements in tests)
+ Adressed errors related to suggests described below (reason for error; unprotected library(lfe) statements in tests)
+ noSuggests error due to missing library("pkg") statements in vignette
+ lfe now install on ubuntu dev

Expand Down
6 changes: 3 additions & 3 deletions vignettes/fwildclusterboot.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ If regression weights are specified in the estimation stage via `lm()`, `feols()

```{r}
# regression with weights / WLS
lm_w_fit <- feols(proposition_vote ~ treatment + ideology1 + log_income, weights = voters$weights, data = voters)
lm_w_fit <- lm(proposition_vote ~ treatment + ideology1 + log_income, weights = voters$weights, data = voters)
boot_feols <- boottest(lm_w_fit,
boot_w_lm <- boottest(lm_w_fit,
clustid = "group_id1",
param = "treatment",
B = 9999)
Expand All @@ -250,7 +250,7 @@ A major bottleneck for the performance of `boottest()` is a large matrix multipl
The number of threads can be specified via the `nthreads` argument of `boottest()`:

```{r, eval = FALSE}
boot_feols <- boottest(lm_fit,
boot_lm <- boottest(lm_fit,
clustid = "group_id1",
param = "treatment",
B = 9999,
Expand Down

0 comments on commit bf3d289

Please sign in to comment.