MCPcopy Index your code
hub / github.com/javascriptdata/danfojs / box

Method box

src/danfojs-base/plotting/index.ts:107–110  ·  view source on GitHub ↗

* Plot Series or DataFrame as boxplot. * 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)

Source from the content-addressed store, hash-verified

105 * @param plotConfig configuration options for making Plots, supports Plotly.js Config and Layout parameters.
106 */
107 box(plotConfig?: PlotConfigObject) {
108 const _plotConfig = this.getPlotConfig(plotConfig);
109 boxPlot(this.ndframe, this.divId, _plotConfig, Plotly);
110 }
111
112 /**
113 * Plot Series or DataFrame as violinplot.

Callers

nothing calls this directly

Calls 2

getPlotConfigMethod · 0.95
boxPlotFunction · 0.85

Tested by

no test coverage detected