gpt4 book ai didi

python - 如何将数据帧的每一列附加到 pandas 的系列中?

转载 作者:太空宇宙 更新时间:2023-11-03 20:26:23 26 4
gpt4 key购买 nike

为什么每一列都不会追加到该系列中?

id_names = pd.Series()
for column in n_df:
id_names.append(n_df[column].drop_duplicates(), ignore_index = True)
id_names

最佳答案

您无法将追加结果重新分配回系列。 pd.Series.append 不是就地方法。您需要重新分配。

id_names = pd.Series()
for column in n_df:
id_names = id_names.append(n_df[column].drop_duplicates(), ignore_index = True)
id_names

但是,有一种更简单的方法可以完成此任务。

尝试:

n_df.melt()

关于python - 如何将数据帧的每一列附加到 pandas 的系列中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57788445/

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