You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cli_abort('`.new_col_name` must not be `"version"`; `epix_slide()` uses that column name to attach which of the `.versions` is associated with each slide computation') # nolint: line_length_linter
287
+
if (!is.null(.new_col_name)) {
288
+
if (.new_col_name%in%x$private$vars) {
289
+
cli_abort(c("`new_col_name` must not be one of the grouping column name(s);
290
+
`epix_slide()` uses these column name(s) to label what group
"x"="`new_col_name` was {format_chr_with_quotes(new_col_name)}"
295
+
))
296
+
}
297
+
if (identical(.new_col_name, "version")) {
298
+
cli_abort('`.new_col_name` must not be `"version"`; `epix_slide()` uses that column name to attach the element of `.versions` associated with each slide computation') # nolint: line_length_linter
"x"="`.new_col_name` was {format_chr_with_quotes(.new_col_name)}"
183
+
))
183
184
}
184
185
if (identical(new_col_name, "time_value")) {
185
-
cli_abort('`new_col_name` must not be `"time_value"`; `epi_slide()` uses that column name to attach the `ref_time_value` associated with each slide computation') # nolint: line_length_linter
186
+
cli_abort('`.new_col_name` must not be `"time_value"`; `epi_slide()` uses that column name to attach the element of `.ref_time_values` associated with each slide computation') # nolint: line_length_linter
0 commit comments