Examples
import numpy as np
import pandas as pd
df = pd.DataFrame({'cost': [350, 250, 200],
'revenue': [200, 350, 400]},
index=['P', 'Q', 'R'])
df
Comparison with a scalar, using either the operator or method:
df == 200
df.ge(200)