Skip to content

Commit

Permalink
lintr
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Oct 24, 2023
1 parent 07892c2 commit 544a963
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/methods_plm.R
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ standard_error.pgmm <- function(model, component = c("conditional", "all"), ...)

#' @export
ci.pgmm <- function(x, ci = 0.95, dof = Inf, method = NULL, component = "conditional", ...) {
if (!is.null(method)) {
method <- tolower(method)
} else {
if (is.null(method)) {
method <- "wald"
} else {
method <- tolower(method)
}

.ci_generic(model = x, ci = ci, dof = dof, method = method, component = component)
Expand Down

0 comments on commit 544a963

Please sign in to comment.