Alias of :meth:`hvplot.hvPlot.kde`.
(self, y=None, by=None, **kwds)
| 1177 | return self(kind='kde', x=None, y=y, by=by, **kwds) |
| 1178 | |
| 1179 | def density(self, y=None, by=None, **kwds): |
| 1180 | """ |
| 1181 | Alias of :meth:`hvplot.hvPlot.kde`. |
| 1182 | """ |
| 1183 | return self(kind='kde', x=None, y=y, by=by, **kwds) |
| 1184 | |
| 1185 | def table(self, columns=None, **kwds): |
| 1186 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected