I would like to merge 2 Data Frames on approximate country name with merge as of but i am getting the following error:
TypeError:'NoneType' object is not callable
Please see the illustrative code below:
cl = {'Country' : ["Brazil", "US", "Russia"], 'BL?':['No', 'No','Yes']} clist = pd.DataFrame.from_dict(cl) cd = {'Country' : ["Braizl", "us", "Rusia"]} c...