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

Class DaskInteractive

hvplot/dask.py:6–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5
6class DaskInteractive(Interactive):
7 @classmethod
8 def applies(cls, obj):
9 if 'dask.dataframe' in sys.modules:
10 import dask.dataframe as dd
11
12 return isinstance(obj, (dd.Series, dd.DataFrame))
13 return False
14
15 def compute(self):
16 self._method = 'compute'
17 return self.__call__()
18
19
20def patch(name='hvplot', interactive='interactive', extension='bokeh', logo=False):

Callers 1

patchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…