I created a copy of a dataframe using "=" (e.g., df2=df1).
When I change any value in df1, the corresponding value in df2 is also changed. How can I stop it? Is there any way to create a copy of a dataframe so that if the value in one dataframe changes, the value remains unchanged in another dataframe?