Displays a 'table'. Reference: https://hvplot.holoviz.org/ref/api/manual/hvplot.hvPlot.table.html Plotting options: https://hvplot.holoviz.org/ref/plotting_options/index.html Parameters ---------- columns : string or sequence The field(
(self, columns=None, **kwds)
| 1183 | return self(kind='kde', x=None, y=y, by=by, **kwds) |
| 1184 | |
| 1185 | def table(self, columns=None, **kwds): |
| 1186 | """ |
| 1187 | Displays a 'table'. |
| 1188 | |
| 1189 | Reference: https://hvplot.holoviz.org/ref/api/manual/hvplot.hvPlot.table.html |
| 1190 | |
| 1191 | Plotting options: https://hvplot.holoviz.org/ref/plotting_options/index.html |
| 1192 | |
| 1193 | Parameters |
| 1194 | ---------- |
| 1195 | columns : string or sequence |
| 1196 | The field(s) to display as columns. |
| 1197 | **kwds : optional |
| 1198 | Additional keywords arguments are documented in :ref:`plot-options`. |
| 1199 | Run ``hvplot.help('table')`` for the full method documentation. |
| 1200 | |
| 1201 | Returns |
| 1202 | ------- |
| 1203 | :class:`holoviews:holoviews.element.Table` / Panel object |
| 1204 | You can `print` the object to study its composition and run: |
| 1205 | |
| 1206 | .. code-block:: |
| 1207 | |
| 1208 | import holoviews as hv |
| 1209 | hv.help(the_holoviews_object) |
| 1210 | |
| 1211 | to learn more about its parameters and options. |
| 1212 | |
| 1213 | References |
| 1214 | ---------- |
| 1215 | |
| 1216 | - HoloViews: https://holoviews.org/reference/elements/bokeh/Table.html |
| 1217 | - Plotly: https://plotly.com/python/table/ |
| 1218 | - Matplotlib: https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.table.html |
| 1219 | """ |
| 1220 | return self(kind='table', **dict(kwds, columns=columns)) |
| 1221 | |
| 1222 | def dataset(self, columns=None, **kwds): |
| 1223 | """ |
no outgoing calls