Open In App
Related Articles

Python | Difference between Pandas.copy() and copying through variables

Improve Article
Improve
Save Article
Save
Like Article
Like

Pandas .copy() method is used to create a copy of a Pandas object. Variables are also used to generate copy of an object but variables are just pointer to an object and any change in new data will also change the previous data.

The following examples will show the difference between copying through variables and Pandas.copy() method.

Example #1: Copying through variables
In this example, a sample Pandas series is made and copied in a new variable. After that, some changes are made in the new data and compared with the old data.




# importing pandas module
import pandas as pd
  
# creating sample series
data = pd.Series(['a', 'b', 'c', 'd'])
  
# creating copy of series
new = data
  
# assigning new values
new[1]='Changed value'
  
# printing data
print(new)
print(data)


Output:
As shown in the output image, the changes made in new data are also reflected in the old data since the new variable was just a pointer to old one.

 
Example #2: Using Pandas.copy() method
In this example, pandas.copy() method is used to copy a data and some changes are made in the new data. The changes are then compared to old data.




# importing pandas module
import pandas as pd
  
# creating sample series
data = pd.Series(['a', 'b', 'c', 'd'])
  
# creating copy of series
new = data.copy()
  
# assigning new values
new[1]='Changed value'
  
# printing data
print(new)
print(data)


Output:
As shown in the output image, the changes in new data are independent and didn’t change anything in old one.


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 17 Sep, 2018
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials