MCPcopy
hub / github.com/pandas-dev/pandas / radd

Method radd

pandas/core/series.py:7173–7176  ·  view source on GitHub ↗
(self, other, level=None, fill_value=None, axis: Axis = 0)

Source from the content-addressed store, hash-verified

7171
7172 @Appender(ops.make_flex_doc("radd", "series"))
7173 def radd(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series:
7174 return self._flex_method(
7175 other, roperator.radd, level=level, fill_value=fill_value, axis=axis
7176 )
7177
7178 @Appender(ops.make_flex_doc("sub", "series"))
7179 def sub(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series:

Callers 1

test_addFunction · 0.95

Calls 1

_flex_methodMethod · 0.95

Tested by 1

test_addFunction · 0.76