* Plot Series or DataFrame as histogram. * Uses Plotly library as backend, so supports Plotly's configuration parameters * @param plotConfig configuration options for making Plots, supports Plotly.js Config and Layout parameters.
(plotConfig?: PlotConfigObject)
| 85 | * @param plotConfig configuration options for making Plots, supports Plotly.js Config and Layout parameters. |
| 86 | */ |
| 87 | hist(plotConfig?: PlotConfigObject) { |
| 88 | const _plotConfig = this.getPlotConfig(plotConfig); |
| 89 | histPlot(this.ndframe, this.divId, _plotConfig, Plotly); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Plot Series or DataFrame as pie. |
nothing calls this directly
no test coverage detected