Python/pandas equivalent to R's rm() -


df1 = pandas.read_csv('') df2 = df1[['a', 'b']] 

now want remove df1 memory. make not make df2, , make df1 = df1[[]], later import further datasets , append them together, no matter i'll need remove datasets memory.

in r, use rm(df1) , removed memory.

thanks. assume duplicate, nothing popped in search.


Comments

Popular posts from this blog

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -