Skip to content

Commit 215842d

Browse files
committed
fix column bug
1 parent 387a123 commit 215842d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/reformat_data_nca_to_modeling.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ reformat_data_nca_to_modeling <- function(
5858
dplyr::left_join(ids, by = dplyr::join_by("ORIGID"))
5959
if(nrow(doses) == nrow(data)) { # Dose is given as a column, and not row-wise using EVID
6060
doses <- doses |>
61-
dplyr::group_by("ORIGID", "GROUP") |>
61+
dplyr::group_by(.data$ORIGID, .data$GROUP) |>
6262
dplyr::slice(1) |>
6363
dplyr::mutate(TIME = 0) |>
6464
dplyr::ungroup()

0 commit comments

Comments
 (0)