Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用
df.describe().to_csv("data.csv", index=False)
我得到了每一列的结果,但缺少每行描述的第一列。
所以我在 csv 中看不到哪个值描述了什么。
count mean std ...
不见了。
如何将该列作为我的 csv 导出中的第一列,就像我在使用时看到的那样
print(df.describe())
您正在排除索引:
输出中每一行的标签describe()是一个索引值:
describe()
>>> df.describe().index Index(['count', 'mean', 'std', 'min', '25%', '50%', '75%', 'max'], dtype='object')
你想包含索引,所以设置index=True. 这是默认设置,因此您也可以只使用df.describe().to_csv("data.csv").
index=True
df.describe().to_csv("data.csv")