* Plot Series or DataFrame as violinplot. * 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)
| 115 | * @param plotConfig configuration options for making Plots, supports Plotly.js Config and Layout parameters. |
| 116 | */ |
| 117 | violin(plotConfig?: PlotConfigObject) { |
| 118 | const _plotConfig = this.getPlotConfig(plotConfig); |
| 119 | violinPlot(this.ndframe, this.divId, _plotConfig, Plotly); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Plot Series or DataFrame as table. |
nothing calls this directly
no test coverage detected