Error: corrupt 'grouped_df', contains 2 rows, and 4 rows in groups
stringdist_inner_join(df1_grp %>% ungroup(), df2) # works with ungrouping
I recognize the error message from dplyr bugs I have encountered, but the current CRAN version of dplyr 0.4.3 will do this join on grouped data_frames without error: inner_join(df1_grp, df2)
I recognize the error message from dplyr bugs I have encountered, but the current CRAN version of dplyr 0.4.3 will do this join on grouped data_frames without error:
inner_join(df1_grp, df2)