Skip to content

fix failing tests, update version #153

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 40 additions & 40 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,72 +1,72 @@
Package: fwildclusterboot
Title: Fast Wild Cluster Bootstrap Inference for Linear Models
Version: 0.13.0
Authors@R:
Version: 0.13.1
Authors@R:
c(
person(given = "Alexander",
family = "Fischer",
role = c("aut", "cre"),
email = "[email protected]"),
person(given = "David",
family = "Roodman",
role = "aut"),
person(given = "Achim",
person(given = "David",
family = "Roodman",
role = "aut"),
person(given = "Achim",
family = "Zeileis",
role = c("ctb"),
comment = "Author of included sandwich fragments"),
person(given = "Nathaniel",
family = "Graham",
role = c("ctb"),
role = c("ctb"),
comment = "Contributor to included sandwich fragments"),
person(given = "Susanne",
family = "Koell",
role = c("ctb"),
family = "Koell",
role = c("ctb"),
comment = "Contributor to included sandwich fragments"),
person("Laurent",
person("Laurent",
"Berge",
role = c("ctb"),
role = c("ctb"),
comment = "Author of included fixest fragments"),
person("Sebastian",
"Krantz",
person("Sebastian",
"Krantz",
role = c("ctb"))
)
Description: Implementation of fast algorithms for wild cluster bootstrap
Description: Implementation of fast algorithms for wild cluster bootstrap
inference developed in 'Roodman et al' (2019, 'STATA' Journal,
<doi:10.1177/1536867X19830877>) and 'MacKinnon et al' (2022),
which makes it feasible to quickly calculate bootstrap test
statistics based on a large number of bootstrap draws even for
large samples. Multiple bootstrap types as described in 'MacKinnon,
Nielsen & Webb' (2022) are supported.
Further, 'multiway' clustering, regression weights,
<doi:10.1177/1536867X19830877>) and 'MacKinnon et al' (2022),
which makes it feasible to quickly calculate bootstrap test
statistics based on a large number of bootstrap draws even for
large samples. Multiple bootstrap types as described in 'MacKinnon,
Nielsen & Webb' (2022) are supported.
Further, 'multiway' clustering, regression weights,
bootstrap weights, fixed effects and 'subcluster' bootstrapping
are supported. Further, both restricted ('WCR') and unrestricted
('WCU') bootstrap are supported. Methods are provided for a variety
of fitted models, including 'lm()', 'feols()'
(from package 'fixest') and 'felm()' (from package 'lfe').
Additionally implements a 'heteroskedasticity-robust' ('HC1') wild
('WCU') bootstrap are supported. Methods are provided for a variety
of fitted models, including 'lm()', 'feols()'
(from package 'fixest') and 'felm()' (from package 'lfe').
Additionally implements a 'heteroskedasticity-robust' ('HC1') wild
bootstrap.
Last, the package provides an R binding to 'WildBootTests.jl',
which provides additional speed gains and functionality,
including the 'WRE' bootstrap for instrumental variable models
which provides additional speed gains and functionality,
including the 'WRE' bootstrap for instrumental variable models
(based on models of type 'ivreg()' from package 'ivreg')
and hypotheses with q > 1.
URL: https://s3alfisc.github.io/fwildclusterboot/
BugReports: https://github.com/s3alfisc/fwildclusterboot/issues/
License: GPL-3
Imports:
License: GPL-3
Imports:
collapse,
dreamerr,
Formula,
Formula,
generics,
dqrng,
gtools,
dqrng,
gtools,
Matrix,
JuliaConnectoR,
MASS,
Rcpp,
summclust,
JuliaConnectoR,
MASS,
Rcpp,
summclust,
rlang
Suggests:
Suggests:
fixest,
lfe,
ivreg,
Expand All @@ -80,8 +80,8 @@ Suggests:
broom,
modelsummary,
bench,
testthat (>= 3.0.0),
tibble,
testthat (>= 3.0.0),
tibble,
sandwich
Encoding: UTF-8
LazyData: true
Expand All @@ -91,7 +91,7 @@ LinkingTo: Rcpp,RcppArmadillo, RcppEigen
VignetteBuilder: knitr
Language: en-US
SystemRequirements: Version Requirements to run the wild bootstrap through Julia - Julia (>= 1.8), WildBootTests.jl (>=0.9).
Julia is downloadable via the official Julia website (https://julialang.org/downloads/),
WildBootTests.jl via Julia's package manager (https://docs.julialang.org/en/v1/stdlib/Pkg/) or
Julia is downloadable via the official Julia website (https://julialang.org/downloads/),
WildBootTests.jl via Julia's package manager (https://docs.julialang.org/en/v1/stdlib/Pkg/) or
its github repository (https://github.com/droodman/WildBootTests.jl)
Config/testthat/edition: 3
Loading