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

Method sub

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

Source from the content-addressed store, hash-verified

7177
7178 @Appender(ops.make_flex_doc("sub", "series"))
7179 def sub(self, other, level=None, fill_value=None, axis: Axis = 0) -> Series:
7180 return self._flex_method(
7181 other, operator.sub, level=level, fill_value=fill_value, axis=axis
7182 )
7183
7184 subtract = sub
7185

Callers 13

process_tempitaFunction · 0.45
render_templatesMethod · 0.45
conda_package_to_pipFunction · 0.45
find_titlesFunction · 0.45
blog_add_postsMethod · 0.45
_str_replaceMethod · 0.45
_str_replaceMethod · 0.45
re_replacerFunction · 0.45
_remove_whitespaceFunction · 0.45
_render_hrefFunction · 0.45

Calls 1

_flex_methodMethod · 0.95

Tested by 2

test_to_stringMethod · 0.36