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

Method __round__

hvplot/interactive.py:590–592  ·  view source on GitHub ↗
(self, ndigits=None)

Source from the content-addressed store, hash-verified

588 return self._apply_operator(abs)
589
590 def __round__(self, ndigits=None):
591 args = () if ndigits is None else (ndigits,)
592 return self._apply_operator(round, *args)
593
594 # Unary operators
595 def __neg__(self):

Callers

nothing calls this directly

Calls 1

_apply_operatorMethod · 0.95

Tested by

no test coverage detected