I have 2 dataframes. Each contains independent datapoints in different rows with different IDs. They share most of the same columns, except for one. I want to combine them into one data frame. I feel like there should be a function that does it, but I can’t find it. So far as I can tell outerjoin should do this, but it doesn’t work:
That’s not bizarre at all, that’s just what you asked for - you are joining two DataFrames, both with a Name column, but you’re not joining onName, so the new DataFrame will have two Name columns. As I said above, I think you’re just not looking for a join here…