0

Can someone explain how I can see all python dataframes in my Jupyter Notebook kernal occupying my memory?

For context in Spyder IDE, I can see all variables ive assigned within it.

Outcome: Id like to see a list of ones still sitting in my memory and by how much ram they are occuying. % of total would be nice as well.

Tinkinc
  • 449
  • 2
  • 8
  • 21
  • https://stackoverflow.com/questions/14372006/variables-memory-size-in-python/14372035 This might help you – PeterD Feb 01 '22 at 21:15

1 Answers1

1

This will do the job:

import pandas as pd
%whos DataFrame