用法:
Series.memory_usage(index=True, deep=False)
返回係列的內存使用情況。
內存使用可以選擇包括索引和
object
dtype 元素的貢獻。- index:布爾值,默認為真
指定是否包含 Series 索引的內存使用情況。
- deep:布爾值,默認為 False
如果為 True,則通過詢問
object
dtypes 來深入檢查數據以了解係統級內存消耗,並將其包含在返回值中。
- int
消耗的內存字節數。
參數:
返回:
例子:
>>> s = cudf.Series(range(3), index=['a','b','c']) >>> s.memory_usage() 43
不包括索引給出了其餘數據的大小,這必然更小:
>>> s.memory_usage(index=False) 24
相關用法
- Python cudf.Series.median用法及代碼示例
- Python cudf.Series.mean用法及代碼示例
- Python cudf.Series.max用法及代碼示例
- Python cudf.Series.min用法及代碼示例
- Python cudf.Series.mask用法及代碼示例
- Python cudf.Series.map用法及代碼示例
- Python cudf.Series.multiply用法及代碼示例
- Python cudf.Series.mode用法及代碼示例
- Python cudf.Series.mul用法及代碼示例
- Python cudf.Series.mod用法及代碼示例
- Python cudf.Series.ceil用法及代碼示例
- Python cudf.Series.update用法及代碼示例
- Python cudf.Series.head用法及代碼示例
- Python cudf.Series.reindex用法及代碼示例
- Python cudf.Series.interleave_columns用法及代碼示例
- Python cudf.Series.nlargest用法及代碼示例
- Python cudf.Series.to_frame用法及代碼示例
- Python cudf.Series.notnull用法及代碼示例
- Python cudf.Series.isnull用法及代碼示例
- Python cudf.Series.rmod用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.memory_usage。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。