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

Class hvGeomExplorer

hvplot/ui.py:886–915  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

884
885
886class hvGeomExplorer(hvPlotExplorer):
887 kind = param.Selector(default=None, objects=KINDS['all'])
888
889 @property
890 def _var_name(self):
891 return 'gdf'
892
893 @property
894 def _single_y(self):
895 return True
896
897 @property
898 def _x(self):
899 return None
900
901 @property
902 def _y(self):
903 return None
904
905 @param.depends('x')
906 def xlim(self):
907 pass
908
909 @param.depends('y')
910 def ylim(self):
911 pass
912
913 @property
914 def _groups(self):
915 return ['gridded', 'dataframe']
916
917
918class hvGridExplorer(hvPlotExplorer):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…