📜  数据帧内存使用 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:43.268000             🧑  作者: Mango

代码示例1
# Returns the total memory usage of the DataFrame.
df.info(memory_usage="deep")

# Returns the memory usage per column of the DataFrame (in Bytes).
df.memory_usage(deep=True)