Skip to content

Commit

Permalink
namespace vec_cbind()
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilHvitfeldt committed Aug 1, 2023
1 parent 95a8d3f commit b5d4fd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/lag.R
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ bake.step_lag <- function(object, new_data, ...) {

new_values <- tibble::new_tibble(new_values)
new_values <- check_name(new_values, new_data, object, new_names)
new_data <- vec_cbind(new_data, new_values)
new_data <- vctrs::vec_cbind(new_data, new_values)
}

new_data <- remove_original_cols(new_data, object, col_names)
Expand Down

0 comments on commit b5d4fd1

Please sign in to comment.