Loading...

verticapy.vDataColumn.abs#

vDataColumn.abs() vDataFrame#

Applies the absolute value function to the input vDataColumn.

Returns#

vDataFrame

self._parent

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 with negative values:

vdf = vp.vDataFrame({"val" : [10, -10, 20, -2]})
123
val
Integer
100%
110
2-10
320
4-2

Now we can convert all to absolute values:

vdf["val"].abs()
123
val
Integer
100%
110
210
320
42

Note

While the same task can be accomplished using pure SQL (see below), adopting a Pythonic approach can offer greater convenience and help avoid potential syntax errors.

vdf["val"] = "ABS(val)"

See also

vDataFrame.abs() : Absolute function for entire vDataFrame.
vDataColumn.apply() : Apply functions using SQL.