Skip to content

Commit

Permalink
minor documentation changes
Browse files Browse the repository at this point in the history
  • Loading branch information
s3alfisc committed Sep 10, 2021
1 parent d00bc0e commit 1cb4293
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: fwildclusterboot
Title: Fast Wild Cluster Bootstrap Inference for Linear Regression Models
Version: 0.3.6.1
Date: 2021-08-27
Version: 0.3.7
Date: 2021-09-10
Authors@R:
c(
person(given = "Alexander",
Expand Down
2 changes: 1 addition & 1 deletion R/boottest_felm.R
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ boottest.felm <- function(object,
#' @return An object of class \code{boottest}
#'
#' \item{p_val}{The bootstrap p-value.}
#' \item{t_stat}{The bootstrap t-statistic.}
#' \item{t_stat}{The regression t-statistic of interest, recalculated in the bootstrap.}
#' \item{conf_int}{The bootstrap confidence interval.}
#' \item{param}{The tested parameter.}
#' \item{N}{Sample size. Might differ from the regression sample size if
Expand Down
3 changes: 2 additions & 1 deletion R/boottest_fixest.R
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ boottest.fixest <- function(object,
#' @return An object of class \code{boottest}
#'
#' \item{p_val}{The bootstrap p-value.}
#' \item{t_stat}{The bootstrap t-statistic.}
#' \item{t_stat}{The regression t-statistic of interest, recalculated in the bootstrap.}
#' \item{conf_int}{The bootstrap confidence interval.}
#' \item{param}{The tested parameter.}
#' \item{N}{Sample size. Might differ from the regression sample size if
Expand Down Expand Up @@ -167,6 +167,7 @@ boottest.fixest <- function(object,
check_arg(tol, "numeric scalar")
check_arg(maxiter, "scalar integer")


# check appropriateness of nthreads
nthreads <- check_set_nthreads(nthreads)
#cat("nthreads boottest \n")
Expand Down
2 changes: 1 addition & 1 deletion R/boottest_lm.R
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ boottest.lm <- function(object,
#' @return An object of class \code{boottest}
#'
#' \item{p_val}{The bootstrap p-value.}
#' \item{t_stat}{The bootstrap t-statistic.}
#' \item{t_stat}{The regression t-statistic of interest, recalculated in the bootstrap.}
#' \item{conf_int}{The bootstrap confidence interval.}
#' \item{param}{The tested parameter.}
#' \item{N}{Sample size. Might differ from the regression sample size if the
Expand Down

0 comments on commit 1cb4293

Please sign in to comment.