Skip to content

Commit

Permalink
to trigger CI
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Sep 24, 2023
1 parent 0a72e99 commit b796218
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions R/report.lm.R
Original file line number Diff line number Diff line change
Expand Up @@ -99,21 +99,18 @@ report_effectsize.lm <- function(x, effectsize_method = "refit", ...) {

if ("Component" %in% colnames(table)) {
merge_by <- c("Parameter", "Component")
start_col <- 4
start_col <- 4L
} else {
merge_by <- "Parameter"
start_col <- 3
start_col <- 3L
}

table <- as.data.frame(table)[c(merge_by, estimate, "CI_low", "CI_high")]
names(table)[start_col:ncol(table)] <- c(paste0(estimate, "_CI_low"), paste0(estimate, "_CI_high"))


rules <- .text_effectsize(attr(attr(interpret, "rules"), "rule_name"))
parameters <- paste0(interpretation, " (", statistics, ")")



as.report_effectsize(parameters,
summary = parameters,
table = table,
Expand Down

0 comments on commit b796218

Please sign in to comment.