We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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?