Loading...

verticapy.vDataColumn.store_usage#

vDataColumn.store_usage() int#

Returns the vDataColumn expected store usage (unit: b).

Returns#

int

vDataColumn expected store usage.

Examples#

Let’s begin by importing VerticaPy.

import verticapy as vp

Hint

By assigning an alias to verticapy, we mitigate the risk of code collisions with other libraries. This precaution is necessary because verticapy uses commonly known function names like “average” and “median”, which can potentially lead to naming conflicts. The use of an alias ensures that the functions from verticapy are used as intended without interfering with functions from other libraries.

Let us create a dummy dataset and check its expected storage:

vdf = vp.vDataFrame({"val": [0, 10, 20]})
123
val
Integer
100%
10
210
320

We can check the expected storage of the vDataFrame using:

vdf["val"].store_usage()
Out[2]: 18

See also

vDataColumn.memory_usage() : vDataColumn memory usage.
vDataFrame.explain() : Information on how Vertica is computing the current vDataFrame relation.