SummaryBinStatParameters

Properties

Link copied to clipboard
abstract val bins: Int?

Number of bins. Overridden by binWidth.

Link copied to clipboard
abstract val binWidth: Number?

The width of the bins. The default is to use bin widths that cover the entire range of the data. You should always override this value, exploring multiple widths to find the best to illustrate the stories in your data.

Link copied to clipboard
abstract val boundary: Number?

Specifies x-value to align bin boundary (i.e., point between bins) to.

Link copied to clipboard
abstract val center: Number?

Specifies x-value to align bin centers to.

Link copied to clipboard
abstract val fn: String?

Name of function computing stat variable ..y...

Link copied to clipboard
abstract val fnMax: String?

Name of function computing stat variable ..ymax...

Link copied to clipboard
abstract val fnMin: String?

Name of function computing stat variable ..ymin...

Link copied to clipboard
abstract val quantiles: List<Number>?

A list of probabilities defining the quantile functions "lq", "mq" and "uq". Must contain exactly 3 values between 0 and 1.

Link copied to clipboard
abstract val threshold: Number?

Only bins with a ..count.. greater than the threshold will be displayed. This is useful for free scales in facets - use threshold=0 to make the plot take up the entire panel space.