0 votes

1 Answer

0 votes
by

The right_join() function works exactly like left_join(). The only difference is the row dropped. The value E, available in the destination data frame, exists in the new table and takes the value NA for the column y.

right_join(df_primary, df_secondary, by = 'ID')
...