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

Method rmul

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

Source from the content-addressed store, hash-verified

7267
7268 @Appender(ops.make_flex_doc("rmul", "series"))
7269 def rmul(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series:
7270 return self._flex_method(
7271 other, roperator.rmul, level=level, fill_value=fill_value, axis=axis
7272 )
7273
7274 def truediv(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series:
7275 """

Callers

nothing calls this directly

Calls 1

_flex_methodMethod · 0.95

Tested by

no test coverage detected