``` python import panda as pd s = pd.Series(range(10)) s.sub(1) # AssertionError: Other operand must be Series df = pd.DataFrame({'test':s}) df.sub(1) # works ``` Am I misunderstanding or should scalars work with sub/mul/div/etc?