Skip to content

Commit

Permalink
#118 #97 make new name for processed output and return object using n…
Browse files Browse the repository at this point in the history
…ew name
  • Loading branch information
egouldo committed Aug 23, 2024
1 parent f834047 commit 4ceec4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/standardise_response.R
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ log_transform_response <- function(data, sim = 10000L, ...) {
cli::cli_h1(glue::glue("Computing meta-analysis inputs:"))
cli::cli_h2(glue::glue("Log-transforming response-variable"))

data <- data %>%
out <- data %>%
pointblank::col_exists(
columns = pointblank::vars(
"id_col",
Expand All @@ -207,5 +207,5 @@ log_transform_response <- function(data, sim = 10000L, ...) {
NA))) %>%
ungroup()

return(data)
return(out)
}

0 comments on commit 4ceec4d

Please sign in to comment.