I am trying to merge 2 data frames by a common column called Player ( i.e: character).
however, not that
dim(df1) = 45 x3
dim(df2) = 596 x6
Code used: merge(df1,df2,all.x=TRUE)
After merging, output gives some NA entries. I manually cross checked in .csv file for some of the NA entries, those actually exist in both df1 & df2. Additionally, when I used dplyr filter method to cross check those players existence in df2, returned a value "0".
Any suggestions guys!?!