Skip to content

Documentation v1.0.0


Documentation / @openassistant/plots / BoxplotProps

Type Alias: BoxplotProps

BoxplotProps = object

Defined in: echarts/boxplot/utils.ts:34

Statistical properties calculated for each boxplot

Properties

high

high: number

Defined in: echarts/boxplot/utils.ts:46

Upper whisker value (Q3 + boundIQR * IQR)


iqr

iqr: number

Defined in: echarts/boxplot/utils.ts:52

Interquartile range (Q3 - Q1)


low

low: number

Defined in: echarts/boxplot/utils.ts:38

Lower whisker value (Q1 - boundIQR * IQR)


mean

mean: number

Defined in: echarts/boxplot/utils.ts:48

Arithmetic mean of the data


name

name: string

Defined in: echarts/boxplot/utils.ts:36

Name/identifier of the data group


q1

q1: number

Defined in: echarts/boxplot/utils.ts:40

First quartile (25th percentile)


q2

q2: number

Defined in: echarts/boxplot/utils.ts:42

Median (50th percentile)


q3

q3: number

Defined in: echarts/boxplot/utils.ts:44

Third quartile (75th percentile)


std

std: number

Defined in: echarts/boxplot/utils.ts:50

Standard deviation of the data

Released under the MIT License.