I have 3 fairly sizable dataframes that I am trying to merge in Python. I found the following technique here:
df1.merge(df2,on='name').merge(df3,on='name')
When I tried to use this on my dataframes I did not receive any errors, however each time I tried to run it I had to kill the program because PyCharm would freeze up. Is it possible that my dataframes are simply too large to merge? I have no problems merging 2 at a time so I can't imagine that that's the case, but I don't know. I really need to analyze the three together so any suggestions would be helpful.