merging df vertically

Solutions on MaxInterview for merging df vertically by the best coders in the world

showing results for - "merging df vertically"
Paola
16 Feb 2017
1'''
2if df1 is
3col1	col2
41		2
53		4
6
7if df2 is
8col1	col2
95		6
107		8
11
12'''
13
14df1.append(df2, ignore_index=True)
15
16'''
17col1	col2
181		2
193		4
205		6
217		8
22'''
similar questions
queries leading to this page
merging df vertically