gpt4 book ai didi

python - 如何隐藏行索引

转载 作者:行者123 更新时间:2023-12-01 07:15:52 28 4
gpt4 key购买 nike

我想将此 DataFrame 写入不带索引值的 xlsx 文件。我该怎么做?

writer=pd.ExcelWriter(r"D:\pandas.xlsx")
today=datetime.datetime.today()
header = pd.MultiIndex.from_product([[today],["name","lastname","age"]])
data=pd.DataFrame(newList, columns=header)
data.to_excel(writer)
writer.save()

结果:

  2019-09-16 18:23:20.851291              
name lastname age
0 John McBrain 22
1 Patrick Heszke 33
2 Luk Nans 21

我需要:

  2019-09-16 18:23:20.851291              
name lastname age
John McBrain 22
Patrick Heszke 33
Luk Nans 21

最佳答案

以下是该异常的解决方法:

NotImplementedError: Writing to Excel with MultiIndex columns and no index ('index'=False) is not yet implemented.

df.columns 是 MultiIndex 时调用 df.to_excel(writer, index=False) 时会出现这种情况。

import numpy as np
import pandas as pd

np.random.seed(2019)

def write_excel(df, path, *args, **kwargs):
"""
Write df as an excel file to path, roughly similar to `df.to_excel` except that it handles
`df` with MultiIndex columns and `index=False`.
"""
writer = pd.ExcelWriter(path)

header = pd.DataFrame(df.columns.to_list()).T
header.to_excel(writer, header=False, *args, **kwargs)

# Avoid the "NotImplementedError: Writing to Excel with MultiIndex columns"
# exception by temporarily changing the columns to a single-level index
orig_columns = df.columns
df.columns = range(len(df.columns))
df.to_excel(
writer, startrow=len(header), header=False, *args, **kwargs
)
df.columns = orig_columns
writer.save()

df = pd.DataFrame(np.random.randint(10, size=(5, 4)), columns=list("ABCD"))
df = df.set_index(list("AB")).unstack("B")
write_excel(df, r"/tmp/pandas.xlsx", sheet_name="Sheet1", index=False)
print(df)

转换DataFrame,df:

     C              D          
B 2 5 8 2 5 8
A
0 5.0 NaN NaN 7.0 NaN NaN
6 NaN NaN 0.0 NaN NaN 0.0
7 NaN NaN 5.0 NaN NaN 3.0
8 5.0 4.0 NaN 8.0 0.0 NaN

到一个看起来像这样的电子表格

enter image description here

关于python - 如何隐藏行索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57961010/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com