* Compute locally-weighted regression fits for one or more data groups. * @constructor * @param {object} params - The parameters for this operator. * @param {function(object): *} params.x - An accessor for the predictor data field. * @param {function(object): *} params.y - An accessor for the pr
(params)
| 139323 | * @param {Array<function(object): *>} [params.groupby] - An array of accessors to groupby. |
| 139324 | * @param {number} [params.bandwidth=0.3] - The loess bandwidth. |
| 139325 | */ function Loess(params) { |
| 139326 | (0, _vegaDataflow.Transform).call(this, null, params); |
| 139327 | } |
| 139328 | Loess.Definition = { |
| 139329 | "type": "Loess", |
| 139330 | "metadata": { |
nothing calls this directly
no outgoing calls
no test coverage detected