Wraps the dataset in a :class:`holoviews:holoviews.element.Dataset` object, for further processing with HoloViews. Parameters ---------- **kwds : optional Additional keywords arguments are documented in :ref:`plot-options`. Run ``hvpl
(self, columns=None, **kwds)
| 1220 | return self(kind='table', **dict(kwds, columns=columns)) |
| 1221 | |
| 1222 | def dataset(self, columns=None, **kwds): |
| 1223 | """ |
| 1224 | Wraps the dataset in a :class:`holoviews:holoviews.element.Dataset` |
| 1225 | object, for further processing with HoloViews. |
| 1226 | |
| 1227 | Parameters |
| 1228 | ---------- |
| 1229 | **kwds : optional |
| 1230 | Additional keywords arguments are documented in :ref:`plot-options`. |
| 1231 | Run ``hvplot.help('dataset')`` for the full method documentation. |
| 1232 | |
| 1233 | Returns |
| 1234 | ------- |
| 1235 | :class:`holoviews:holoviews.element.Dataset` / Panel object |
| 1236 | You can `print` the object to study its composition and run: |
| 1237 | |
| 1238 | .. code-block:: |
| 1239 | |
| 1240 | import holoviews as hv |
| 1241 | hv.help(the_holoviews_object) |
| 1242 | |
| 1243 | to learn more about its parameters and options. |
| 1244 | |
| 1245 | References |
| 1246 | ---------- |
| 1247 | |
| 1248 | - HoloViews Tabular: https://holoviews.org/getting_started/Tabular_Datasets.html |
| 1249 | - HoloViews Gridded: https://holoviews.org/getting_started/Gridded_Datasets.html |
| 1250 | """ |
| 1251 | return self(kind='dataset', **dict(kwds, columns=columns)) |
| 1252 | |
| 1253 | def points(self, x=None, y=None, **kwds): |
| 1254 | """ |
no outgoing calls