How could I identify all the Pandas DataFrames created in my current notebook session?
Something like in SAS seeing all the members in the Work library would be ideal.
Thanks.
How could I identify all the Pandas DataFrames created in my current notebook session?
Something like in SAS seeing all the members in the Work library would be ideal.
Thanks.
Solution
Explanation
All objects
%who
shows all used names:Conveniently as a list:
Or as table with data types:
Filter for DataFrames
If you mean memory try something like:
or some such.