I have a dataframe that contain some data.
import pandas as pd
start = time.time()
data_store = pd.read_excel("101010.xlsx")
print(data_store)
A B
100 -200
100 -99
200 -150
100 150
50 -60
70 50
80 -100
25 15
30 40
50 -25
I want to apply Math's Mod function in python pandas dataframe and print that result.
Ex:- |-200| = 200
Please can some body help me how i can apply this function in python pandas dataframe.
Thank you in advance :) :) :)