Open DOH-Manada opened 3 years ago
@DOH-Manada pandas-flavor doesnt copy. It just provides a convenient interface. The real work is in pandas. you can also enable pandas copy on write which should take care of copy or not copy decisions for better memory performance
Problem description: It's difficult to determine how/when to use inplace or create a copy and the behavior is inconsistent. Does pandas_flavor always require a copy/modifying the original dataframe? Is there a way to avoid this in order to save memory?
If I call the first function on a dataframe, it returns the dataframe with dropped rows but does not change the original dataframe.
This function returns the reduced dataframe, but doesn't affect the original dataframe.