Hope this is the place to ask the developers this question directly. Always wondering which way saves memory. As an example, we use dropna: ``` df.drop('col', inplace=True, axis=1) ``` or ``` df = df.drop('col', axis=1) ```