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)
| 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 | """ |
no outgoing calls