I would like to compare to a string frequence between two dataframes in R.
My first dataframe (X):
List1
Engl001
Engl002
Engl003
My second dataframe (Y):
List1 ram
Engl001 noi2
Engl001 oui5
Engl003 ki4
My expected output:
List1 Count
Engl001 2
Engl002 0
Engl003 1
Thank you!