ChartDataBoxplotOptionsSchema
groupbystring[]nullable
metricsundefined[]nullable
Aggregate expressions. Metrics can be passed as both references to datasource metrics (strings), or ad-hoc metricswhich are defined only within the query object. See ChartDataAdhocMetricSchema for the structure of ad-hoc metrics. When metrics is undefined or null, the query is executed without a groupby. However, when metrics is an array (length >= 0), a groupby clause is added to the query.
percentiles
Upper and lower percentiles for percentile whisker type.
Example:
[1,99]whisker_typestringrequired
Whisker type. Any numpy function will work.
Possible values: [tukey, min/max, percentile]
Example:
tukeyChartDataBoxplotOptionsSchema
{
"groupby": [
"string"
],
"metrics": [
null
],
"percentiles": [
1,
99
],
"whisker_type": "tukey"
}