pandas dataframe如何转换成列表,要有完整的表头和index

尝试用df.values.tolist() ,发现只是部分数据,
df2=[df.columns.tolist()]+df.values.tolist() 发现有时可以满足要求,有时又没有每行的第一列的关键编号,
是否必须遍历才行?
请高人指点一二
########


回答:

pandas dataframe如何转换成列表,要有完整的表头和index
如图, df.values 是不包括 columns 和 index 的,所以 df.values.tolist() 自然也不会包括。

想要里面包括 index 可以用 reset_index 重置索引后再转换

df.reset_index().values.tolist()

想要里面包括 columns 稍微麻烦点,先转置再重置索引再转置回来

df.T.reset_index().T.values.tolist()

同时包括 index 和 columns 也是同样的原理

df.reset_index().T.reset_index().T.values.tolist()


回答:

dataframe2lst2d
用了一天时间没有结果,最后用文件中转,非常丑陋;
谢谢高人;一行代码帮我解决问题

以上是 pandas dataframe如何转换成列表,要有完整的表头和index 的全部内容, 来源链接: utcz.com/a/156464.html

回到顶部