Pandas:将 dataframe 导出到 excel(不带索引)


您可以使用以下语法将 pandas DataFrame 导出到 Excel 文件,并且不包含索引列:

 df. to_excel (' my_data.xlsx ', index= False )

index=False参数告诉 pandas 在将 DataFrame 导出到 Excel 文件时不要包含索引列。

以下示例展示了如何在实践中使用此语法。

示例:将 Pandas DataFrame 导出到不带索引的 Excel 文件

假设我们有以下 pandas DataFrame,其中包含有关各种篮球运动员的信息:

 import pandas as pd

#createDataFrame
df = pd. DataFrame ({' team ': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'],
                   ' points ': [18, 22, 19, 14, 14, 11, 20, 28],
                   ' assists ': [5, 7, 7, 9, 12, 9, 9, 4],
                   ' rebounds ': [11, 8, 10, 6, 6, 5, 9, 12]})

#view DataFrame
print (df)

  team points assists rebounds
0 A 18 5 11
1 B 22 7 8
2 C 19 7 10
3 D 14 9 6
4 E 14 12 6
5 F 11 9 5
6 G 20 9 9
7:28 4 12

如果我们使用to_excel()函数将 DataFrame 导出到 Excel 文件,pandas 将默认包含索引列:

 #export DataFrame to Excel file
df. to_excel (' basketball_data.xlsx ')

Excel 文件如下所示:

请注意,索引列默认包含在 Excel 文件中。

要将 DataFrame 导出到不带索引列的 Excel 文件,您必须指定index=False

 #export DataFrame to Excel file without index column
df. to_excel (' basketball_data.xlsx ', index= False )

Excel 文件如下所示:

pandas导出到excel没有索引

请注意,索引列不再包含在 Excel 文件中。

注意:您可以在此处找到 pandas to_excel()函数的完整文档。

其他资源

以下教程解释了如何在 pandas 中执行其他常见任务:

将 Excel 文件导入 Pandas 时如何忽略特定列
如何在 Pandas 中合并多个 Excel 工作表
如何跨多个 Excel 工作表编写 Pandas DataFrame

添加评论

您的电子邮箱地址不会被公开。 必填项已用*标注