MCPcopy Create free account
hub / github.com/holoviz/hvplot / __sub__

Method __sub__

hvplot/interactive.py:668–670  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

666 return self._apply_operator(operator.pow, other)
667
668 def __sub__(self, other):
669 other = other._transform if isinstance(other, Interactive) else other
670 return self._apply_operator(operator.sub, other)
671
672 def __truediv__(self, other):
673 other = other._transform if isinstance(other, Interactive) else other

Callers

nothing calls this directly

Calls 1

_apply_operatorMethod · 0.95

Tested by

no test coverage detected