You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can control whether a channel is computed before or after binning. If a channel is declared only in *options*, it will be computed after binning and be passed the binned data: each datum is the array of input data correpsonding to the current bin.
992
+
You can control whether a channel is computed before or after binning. If a channel is declared only in *options* (and it is not a special group-eligible channel such as *x*, *y*, *z*, *fill*, or stroke), it will be computed after binning and be passed the binned data: each datum is the array of input data correpsonding to the current bin.
However, if a channel is declared in both *outputs* and *options*, then the channel in *options* is computed prior to binning and can then be aggregated using any built-in reducer (or a custom reducer function) during the bin transform.
1004
+
However, if a channel is declared in both *outputs* and *options*, then the channel in *options* is computed before binning and can then be aggregated using any built-in reducer (or a custom reducer function) during the bin transform.
You can control whether a channel is computed before or after grouping. If a channel is declared only in *options*, it will be computed after grouping and be passed the grouped data: each datum is the array of input data correpsonding to the current group.
1115
+
You can control whether a channel is computed before or after grouping. If a channel is declared only in *options* (and it is not a special group-eligible channel such as *x*, *y*, *z*, *fill*, or stroke), it will be computed after grouping and be passed the grouped data: each datum is the array of input data correpsonding to the current group.
However, if a channel is declared in both *outputs* and *options*, then the channel in *options* is computed prior to grouping and can then be aggregated using any built-in reducer (or a custom reducer function) during the group transform.
1127
+
However, if a channel is declared in both *outputs* and *options*, then the channel in *options* is computed before grouping and can then be aggregated using any built-in reducer (or a custom reducer function) during the group transform.
0 commit comments