pandas 的 ignore_index

默认值:ignore_index=False

合并方向是否忽略原行 / 列名称,而采用系统默认的索引,即从 0 开始的 int。

axis=0 时 ignore_index=True,index 采用系统默认索引:
>>> pd.concat([df1, df2], axis``=``0``, ignore_index``=``True``)

A    B    C    D    E    F

0  1.0  1.0  1.0  1.0  NaN  NaN

1  1.0  1.0  1.0  1.0  NaN  NaN

2  1.0  1.0  1.0  1.0  NaN  NaN

3  1.0  1.0  1.0  1.0  NaN  NaN

4  NaN  NaN  ``2.0  2.0  2.0  2.0

5  NaN  NaN  ``2.0  2.0  2.0  2.0

6  NaN  NaN  ``2.0  2.0  2.0  2.0

7  NaN  NaN  ``2.0  2.0  2.0  2.0