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

Method polygons

hvplot/plotting/core.py:1361–1391  ·  view source on GitHub ↗

Polygon plot for geopandas dataframes. Reference: https://hvplot.holoviz.org/ref/api/manual/hvplot.hvPlot.polygons.html Plotting options: https://hvplot.holoviz.org/ref/plotting_options/index.html Parameters ---------- c : string, optional

(self, x=None, y=None, c=None, **kwds)

Source from the content-addressed store, hash-verified

1359 return self(x, y, angle=angle, mag=mag, kind='vectorfield', **kwds)
1360
1361 def polygons(self, x=None, y=None, c=None, **kwds):
1362 """
1363 Polygon plot for geopandas dataframes.
1364
1365 Reference: https://hvplot.holoviz.org/ref/api/manual/hvplot.hvPlot.polygons.html
1366
1367 Plotting options: https://hvplot.holoviz.org/ref/plotting_options/index.html
1368
1369 Parameters
1370 ----------
1371 c : string, optional
1372 The dimension to color the polygons by
1373 logz : bool
1374 Enables logarithmic colormapping. Default is False.
1375 **kwds : optional
1376 Additional keywords arguments are documented in :ref:`plot-options`.
1377 Run ``hvplot.help('polygons')`` for the full method documentation.
1378
1379 Returns
1380 -------
1381 :class:`holoviews:holoviews.element.Polygons` / Panel object
1382 You can `print` the object to study its composition and run:
1383
1384 .. code-block::
1385
1386 import holoviews as hv
1387 hv.help(the_holoviews_object)
1388
1389 to learn more about its parameters and options.
1390 """
1391 return self(x, y, c=c, kind='polygons', **kwds)
1392
1393 def paths(self, x=None, y=None, c=None, **kwds):
1394 """

Callers 1

test_plot_without_crsMethod · 0.45

Calls

no outgoing calls

Tested by 1

test_plot_without_crsMethod · 0.36