The latest release of dplyr has impacted the matching functions as the union_all.
union_all(), like union(), now requires that data frames be compatible: i.e. they have the same columns, and the columns have compatible types.
Code will need to be amended to ensure that this does not cause any issues as currently the union_all is joining data frames with varying numbers of columns.
The latest release of dplyr has impacted the matching functions as the union_all.
union_all(), like union(), now requires that data frames be compatible: i.e. they have the same columns, and the columns have compatible types.
Code will need to be amended to ensure that this does not cause any issues as currently the union_all is joining data frames with varying numbers of columns.