How To Get Absolute Values in Python

Channel:
Subscribers:
43,700
Published on ● Video Link: https://www.youtube.com/watch?v=Y8R0ZG9QbHY



Category:
Guide
Duration: 2:43
5,853 views
103


abs() is a Python built in function that finds the absolute value of a number. abs() can be combined with map() to get the absolute values of all numbers in a list and abs() can be run on numpy arrays and pandas columns.

Code used in this video:

# Check absolute value with abs()
x = -5
abs(x)

# Calculate the absolute value of every element in a list

x = [4, 5, -3, -6, -2, 6]

[*map(abs, x)]

# Calculate the absolute vaule of an array

import numpy as np

x = np.array(x)

abs(x)

# Get the absolute value of a Pandas column
import pandas as pd

df = pd.DataFrame({"col1":x})

print(df)

abs(df["col1"])

* Note: YouTube does not allow greater than or less than symbols in the text description, so the code above will not be exactly the same as the code shown in the video! I will use Unicode large < and > symbols in place of the standard sized ones.







Tags:
python abs()
python abs
python absolute value
numpy absolute value
pandas absolute value
map absolute value
absolute value of a list
abs() in python
abs in python
python built ins
python base library functions
abs
abs()
how to use abs() in python
how to find absolute values in python