I have Pandas data frame big data frame loaded into memory. Trying to utilize memory more efficient way.
For this purposes, i won't use this data frame after i will subset from this data frame only rows i am interested are:
DF = pd.read_csv("Test.csv")
DF = DF[DF['A'] == 'Y']
Already tried this solution but not sure if it most effective. Is solution above is most efficient for memory usage? Please advice.