Functions
Math
ABS
How to Use Excel's ABS Function in Pandas
Excel's ABS function finds the absolute value of a number. The absolute value of a function is the non-negative value of a number. The absolute value function is commonly used, for example, to calculate the distance between two points. Regardless of the order we look at the points, the distance should always be positive.
This page explains how to implement Excel's ABS function in Python, so you can automate Excel reports using Python and Pandas.
Use Mito's ABS function
Mito is an open source library that lets you write Excel formulas in Python. Either write the formula directly in Python or use the ABS formula in the Mito Spreadsheet and generate the equivalent Python code automatically.
Mito's ABS function works exactly like it does in Excel. That means you don't need worry about managing data types, handling errors, or the edge case differences between Excel and Python formulas.
Install Mito to start using Excel formulas in Python.
# Import the mitosheet Excel functions
from mitosheet.public.v3 import *;
# Use Mito's ABS function
df['Absolute Value'] = ABS(df['A'])
Implementing the Absolute Value function in Pandas#
To replicate the ABS function in Excel using Python and Pandas, you can use the `abs()` function available in Pandas. Below are examples of how to achieve the same functionality.
Calculate the absolute value of every cell in a Pandas series#
The most common way to use the function in Excel is to apply it directly to a column or series of numbers in a Pandas DataFrame.
# Calculate the absolute value of the Numbers column
df['ABS_Result'] = df['Numbers'].abs()
Finding the absolute difference between two columns#
To use the absolute value as part of a more complex operation, you can use the `apply()` function to apply the operation to every element in an pandas dataframe column.
# Calculate the absolute difference between Column1 and Column2
df['Absolute_Difference'] = (df['Column1'] - df['Column2']).abs()
Using ABS as part of a more complex operation#
To use the absolute value as part of a more complex operation, you can use the `apply()` function to apply the operation to every element in an pandas dataframe column.
# Define a function to calculate the absolute sum of a row
def abs_sum(row):
return row.abs().sum()
# Create a new column 'ABS_SUM' by applying the custom function
df['ABS_SUM'] = df.apply(abs_sum, axis=1)
Common mistakes when using ABS in Python#
When implementing the ABS function in Python, there are a few common challenges that you might run into.
Handling Missing Values#
If you execute the ABS value function on a cell that contains new data in Excel, it will simply return 0. However, in Pandas, empty cells are represented by the Python NoneType. Using the .abs() function on the NoneType will create this error `TypeError: bad operand type for abs(): 'NoneType'`.
To resolve this error, before calling the absolute value function, use the fillnan function to replace all missing values with 0. Doing so will make your absolute value function handle missing values exactly the same as Excel.
# Fill missing values with 0 so it is handled the same was as Excel
df.fillna(0, inplace=True)
# Calculate the absolute value
df['ABS_SUM'] = df['A'].abs()
Handling Non-numeric Values#
In Python, when you use the ABS function you don't have to think about the data types of the input numbers. In fact, most of the time you never have to think about the datatypes of your data in Excel. However, in Python, each column has an explicit data type and each function exepcts a specific data type as the input.
Python's .abs function expects the input to be an int (integer) or float (number with decimals). Before calling the .abs function you can make sure that the input is the correct dtype using Pandas .astype formula.
# Convert the columns to numeric data types (float)
df[A] = df['A'].astype(float)
# Then, replace any cell that could not be converted to a float
# with the value 0, so it's handled the same as Excel.
df.fillna(0, inplace=True)
# Calculate the absolute value
df['ABS_SUM'] = df['A'].abs()
Understanding the Absolute Value Formula in Excel#
The ABS function in Excel takes a single parameters and returns its absolute value.
=ABS(number)
ABS Excel Syntax
Parameter | Description | Data Type |
---|---|---|
number | The number for which you want to find the absolute value. | number |
Examples
Formula | Description | Result |
---|---|---|
=ABS(-1) | Calculate the absolute value of -1 | 1 |
=ABS(1) | Calculate the absolute value of 1 | 1 |
=ABS(2*-2) | Calculate the absolute value of 2 * -2 | 4 |
Don't re-invent the wheel. Use Excel formulas in Python.
Install MitoDon't want to re-implement Excel's functionality in Python?
Edit a spreadsheet.
Generate Python.
Mito is the easiest way to write Excel formulas in Python. Every edit you make in the Mito spreadsheet is automatically converted to Python code.
View all 100+ transformations →