简体   繁体   中英

How to undo the changes made in original DataFrame?

I am working with a dataset. As a precautionary measure, I created a back-up copy using the following command.

Orig. Dataframe = df

df_copy = df.copy(deep = True)

Now, I dropped few columns from original dataframe (df) by mistake using inplace = True. I tried to undo the operation, but no use.

So, the question is how to get my original dataframe (df) from copied dataframe (df_copy) ?

Yoy cannot restore it. Code like below dosen't work.

df = df_copy.copy(deep = True)

Every variables which reference original df keep reference after operation above.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM