| 4 | |
| 5 | |
| 6 | class 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 | |
| 20 | def patch(name='hvplot', interactive='interactive', extension='bokeh', logo=False): |
no outgoing calls
no test coverage detected
searching dependent graphs…