import pandas as pd
# Create a Pandas dataframe from some data.
data = [10, 20, 30, 40, 50, 60, 70, 80]
df = pd.DataFrame({'Rank': data,
'Country': data,
'Population': data,
'Data1': data,
'Data2': data})
# Create a Pandas Excel writer using XlsxWriter as the engine.
writer = pd.ExcelWriter("pandas_table.xlsx", engine='xlsxwriter')
# Convert the dataframe to an XlsxWriter Excel object. Turn off the default
# header and index and skip one row to allow us to insert a user defined
# header.
df.to_excel(writer, sheet_name='Sheet1', startrow=1, header=False, index=False)
# Get the xlsxwriter workbook and worksheet objects.
workbook = writer.book
worksheet = writer.sheets['Sheet1']
# Get the dimensions of the dataframe.
(max_row, max_col) = df.shape
# Create a list of column headers, to use in add_table().
column_settings = []
for header in df.columns:
column_settings.append({'header': header})
# Add the table.
worksheet.add_table(0, 0, max_row, max_col - 1, {'columns': column_settings})
# Make the columns wider for clarity.
worksheet.set_column(0, max_col - 1, 12)
# Close the Pandas Excel writer and output the Excel file.
writer.save()
5条答案
按热度按时间cwtwac6a1#
下面是使用XlsxWriter执行此操作的一种方法:
输出:
更新:我已经在XlsxWriter文档中添加了一个类似的示例:Example: Pandas Excel output with a worksheet table
vkc1a9a22#
您不能使用
to_excel
执行此操作。解决方法是打开生成的xlsx文件,并使用openpyxl在其中添加表:请注意,所有表格标题必须是字符串。如果您有未命名的索引(这是规则),第一个单元格(A1)将为空,这将导致文件损坏。为避免这种情况给予请为您的索引命名(如上所示)或使用以下命令导出不带索引的 Dataframe :
ifmq2ha23#
如果你不想保存、重新打开和重新保存,另一个解决方法是使用xlsxwriter。它可以直接写ListObject表,但不能直接从 Dataframe 中写,所以你需要分解这些部分:
add_table()
函数需要'data'
作为列表的列表,其中每个子列表表示 Dataframe 的一行,'columns'
作为标题的字典的列表,其中每个列由{'header': 'ColumnName'}
形式的字典指定。gstyhher4#
我创建了一个软件包来编写Pandas的格式正确的Excel表格:pandas-xlsx-tables
也可以使用
xlsx_table_to_df
执行相反的操作zwghvu4y5#
基于@jmcnamara的回答,而是作为一个方便的函数而使用“with”语句: