Good day.
Please explain why you need the deep option when copying the data frame to Pandas?
The documentation is somehow vaguely written, it only underlines that for dataframes, deep copying is not an analogue of deep copying of ordinary python objects. But then how do the options deep=True and deep=False differ deep=False I did not understand.
If I just need to take one source data frame and get a copy of it, so that I can modify the source code and the copy independently of each other - what value of the deep option should I specify?