updated for new version

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-12-02 13:59:05 +01:00
commit 8c7fafe51c
No known key found for this signature in database
9 changed files with 69 additions and 23 deletions

View file

@ -374,7 +374,11 @@ cut_variable_server <- function(id, data_r = reactive(NULL)) {
}
)
data <- append_column(data, column = new_variable, name = paste0(variable, "_cut"), index = "right")
data <- append_column(data,
column = new_variable,
name = unique_names(paste0(variable, "_cut"),
existing = names(data)),
index = "right")
code <- rlang::call2(
"append_column",