powered by
Add columns from new_frame into old_frame, replacing any columns with matching names in orig_frame with values from new_frame.
patch_columns_into_frame(orig_frame, new_frame)
patched data.frame
data.frame to patch into.
data.frame to take replacement columns from.
orig_frame <- data.frame(x = 1, y = 2) new_frame <- data.frame(y = 3, z = 4) patch_columns_into_frame(orig_frame, new_frame)
Run the code above in your browser using DataLab