MCPcopy
hub / github.com/dask/dask / total_mem_usage

Function total_mem_usage

dask/dataframe/core.py:310–314  ·  view source on GitHub ↗
(df, index=True, deep=False)

Source from the content-addressed store, hash-verified

308
309
310def total_mem_usage(df, index=True, deep=False):
311 mem_usage = df.memory_usage(index=index, deep=deep)
312 if is_series_like(mem_usage):
313 mem_usage = mem_usage.sum()
314 return mem_usage
315
316
317def idxmaxmin_chunk(x, fn=None, skipna=True, numeric_only=False):

Callers 1

operationMethod · 0.90

Calls 3

is_series_likeFunction · 0.90
memory_usageMethod · 0.45
sumMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…