Examples
import numpy as np
import pandas as pd
df = pd.DataFrame({'angles': [5, 3, 0],
'degrees': [540, 180, 360]},
index=['pentagon', 'right triangle', 'circle'])
df
Add a scalar with operator version which return the same results:
df + 2
df.add(2)
Add by constant with reverse version.
df.radd(2)