Skip to content

Documentation / @ripl/charts / Bin

Interface: Bin

Defined in: charts/src/core/statistics.ts:11

A histogram bin covering the half-open interval [x0, x1) (the last bin includes x1).

Properties

PropertyTypeDescriptionDefined in
countnumberNumber of values that fell into the bin.charts/src/core/statistics.ts:17
valuesnumber[]The values that fell into the bin.charts/src/core/statistics.ts:19
x0numberInclusive lower boundary of the bin.charts/src/core/statistics.ts:13
x1numberUpper boundary of the bin (exclusive, except for the last bin).charts/src/core/statistics.ts:15