errorbar method

VlChartMark errorbar()

Adds an error bar: an interval computed from the rows rather than read off them.

extent decides what the interval is — stderr by default, or stdev, ci or iqr.

Returns The new mark, so its channels and properties chain.

See also errorband.

Implementation

VlChartMark errorbar() {
  return this.mark("errorbar");
}