怎样复制得到一个一模一样的dataframe?

发布于 2022-09-06 08:23:36 字数 559 浏览 10 评论 0

我有一个dataframe a=pd.DataFrame({"A":[1,2,3,4,5,6]})
怎样复制得到另一个一模一样的dataframe b?
dataframe.copy()中deep是True和False有什么区别?

import pandas as pd
a=pd.DataFrame({"A":[1,2,3,4,5,6]})
b=a.copy()
print("a",id(a),a.columns)
print("b",id(b),b.columns)
b.columns=["B"]
print("a",id(a),a.columns)
print("b",id(b),b.columns)

结果为:
a 35432320 Index(['A'], dtype='object')
b 99956440 Index(['A'], dtype='object')
a 35432320 Index(['A'], dtype='object')
b 99956440 Index(['B'], dtype='object')
是不是这样就生成了一个新的对象b与a的内容一模一样?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

以往的大感动 2022-09-13 08:23:36

用copy.deepcopy吧。

    Parameters
            ----------
    deep : boolean or string, default True
        Make a deep copy, including a copy of the data and the indices.
        With ``deep=False`` neither the indices or the data are copied.

        Note that when ``deep=True`` data is copied, actual python objects
        will not be copied recursively, only the reference to the object.
        This is in contrast to ``copy.deepcopy`` in the Standard Library,
        which recursively copies object data.
恬淡成诗 2022-09-13 08:23:36

要先了解DataFrame.copy()默认就是 deep 模式。所以。。。。你的标题不太准确。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文