Seems kinda simple but havent been able to find a fix for this idea on Google, YouTube, or Stackoverflow.
Essentially if one panda df like this:
A | B
-----
45| 98
And then another panda df like this:
X | Y
------
67 | 2
Is there a way to structure/combine the two together like this:
df_merged = pd.DataFrame([df1,df2])
And generate a complete panda df like:
A | B
-----
45| 98
X | Y
------
67 | 2
Can a row be created in the middle to separate between the top df and bottom df?
Is it possible?
Thank you