We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 387a123 commit 215842dCopy full SHA for 215842d
R/reformat_data_nca_to_modeling.R
@@ -58,7 +58,7 @@ reformat_data_nca_to_modeling <- function(
58
dplyr::left_join(ids, by = dplyr::join_by("ORIGID"))
59
if(nrow(doses) == nrow(data)) { # Dose is given as a column, and not row-wise using EVID
60
doses <- doses |>
61
- dplyr::group_by("ORIGID", "GROUP") |>
+ dplyr::group_by(.data$ORIGID, .data$GROUP) |>
62
dplyr::slice(1) |>
63
dplyr::mutate(TIME = 0) |>
64
dplyr::ungroup()
0 commit comments