所以我想在我的Excel工作表中使用Pandas DataFrame创建一个额外的索引/额外的列(包含已经存在的数据)。
图片1(我的代码输出):
图片2(我希望代码输出的内容):
下面是图片1的代码:
import pandas as pd
# Create a Pandas dataframe from the data.
df = pd.DataFrame([['a', 'b'], ['c', 'd']],
index=['row 1', 'row 2'],
columns=['col 1', 'col 2'])
# Create a Pandas Excel writer using XlsxWriter as the engine.
writer = pd.ExcelWriter('pandas_simple.xlsx', engine='xlsxwriter')
# Convert the dataframe to an XlsxWriter Excel object.
df.to_excel(writer, sheet_name='Sheet1')
# Close the Pandas Excel writer and output the Excel file.
writer.close()
有没有可能的办法做到这一点?
1条答案
按热度按时间axr492tv1#
您可以使用
pd.MultiIndex.from_arrays
: