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

Function process_intake

hvplot/util.py:656–667  ·  view source on GitHub ↗
(data, use_dask)

Source from the content-addressed store, hash-verified

654
655
656def process_intake(data, use_dask):
657 if data.container not in ('dataframe', 'xarray'):
658 raise NotImplementedError(
659 'Plotting interface currently only '
660 'supports DataSource objects declaring '
661 'a dataframe or xarray container.'
662 )
663 if use_dask:
664 data = data.to_dask()
665 else:
666 data = data.read()
667 return data
668
669
670def is_geodataframe(data):

Callers 1

_process_dataMethod · 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…