Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Pandas DataFrame copy() 方法

❮ DataFrame 参考


示例

创建 DataFrame 的副本

import pandas as pd

data = {
  "name": ["Sally", "Mary", "John"],
  "qualified": [True, False, False]
}

df = pd.DataFrame(data)

# 创建副本

newdf = df.copy()

print(newdf)
自己试试 »

定义和用法

copy() 方法返回 DataFrame 的副本。

默认情况下,副本是“深拷贝”,这意味着对原始 DataFrame 进行的任何更改都不会反映在副本中。

;0

注意: 使用参数 deep=False,只会复制对数据(和索引)的引用,对原始数据进行的任何更改都将反映在副本中,并且,对副本进行的任何更改都将反映在原始数据中。


语法

dataframe.copy(deep)

参数

该参数是一个关键字参数

参数 描述
deep  True|False 可选。默认值为 True。指定是创建深拷贝还是浅拷贝。

默认情况下 (deep=True),对原始 DataFrame 进行的任何更改都不会反映在副本中。

使用参数 deep=False,只会复制对数据(和索引)的引用,对原始数据进行的任何更改都将反映在副本中,并且,对副本进行的任何更改都将反映在原始数据中。


返回值

一个Pandas DataFrame,作为原始数据的副本。


❮ DataFrame 参考

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.