Skip to content

Boundary Handling

Edge strategies that reduce bias near the ends of the data range.

Overview

Standard LOESS neighbourhoods become asymmetric at the boundaries: fewer points exist on one side, pulling the local fit toward the data interior. The boundary_policy parameter controls how the data is padded to mitigate this effect.

Boundary Handling

Policy Padding Strategy Best For
"extend" Repeat first / last value Most datasets (default)
"reflect" Mirror data at boundaries Periodic or symmetric data
"zero" Pad with zeros Data known to approach zero
"noboundary" No padding (Cleveland original) Reproducing reference behaviour

Extend (Default)

Pads beyond both endpoints by replicating the first and last observed values. Prevents the fit from curling toward zero and is a safe default for nearly all use cases.

Use when: No strong prior on boundary behaviour; general-purpose smoothing.

model <- Loess(boundary_policy = "extend")
result <- model$fit(x, y)
model = fl.Loess(boundary_policy="extend")
result = model.fit(x, y)
let model = Loess::new()
    .boundary_policy("extend")
    .build()?;
let result = model.fit(&x, &y)?;
model = Loess(; boundary_policy="extend")
result = fit(model, x, y)
const model = new Loess({ boundary_policy: "extend" });
const result = model.fit(x, y);
const model = new Loess({ boundary_policy: "extend" });
const result = model.fit(x, y);
fastloess::Loess model({ .boundary_policy = "extend" });
auto result = model.fit(x, y).value();

Reflect

Mirrors the data about both endpoints before fitting, then discards the reflected region from the output. Preserves continuity of derivatives, making it ideal for periodic or spatially symmetric signals.

Use when: Circular data (e.g., angle, day-of-year), symmetric physical quantities, or when the derivative at the boundary should be near zero.

model <- Loess(boundary_policy = "reflect")
result <- model$fit(x, y)
model = fl.Loess(boundary_policy="reflect")
result = model.fit(x, y)
let model = Loess::new()
    .boundary_policy("reflect")
    .build()?;
let result = model.fit(&x, &y)?;
model = Loess(; boundary_policy="reflect")
result = fit(model, x, y)
const model = new Loess({ boundary_policy: "reflect" });
const result = model.fit(x, y);
const model = new Loess({ boundary_policy: "reflect" });
const result = model.fit(x, y);
fastloess::Loess model({ .boundary_policy = "reflect" });
auto result = model.fit(x, y).value();

Zero

Pads with zeros beyond both endpoints. Appropriate when the underlying process is known to be zero outside the observation window (e.g., a pulse signal or a bounded physical quantity).

Use when: Signal decays to zero at both ends; zero is a meaningful boundary value.

model <- Loess(boundary_policy = "zero")
result <- model$fit(x, y)
model = fl.Loess(boundary_policy="zero")
result = model.fit(x, y)
let model = Loess::new()
    .boundary_policy("zero")
    .build()?;
let result = model.fit(&x, &y)?;
model = Loess(; boundary_policy="zero")
result = fit(model, x, y)
const model = new Loess({ boundary_policy: "zero" });
const result = model.fit(x, y);
const model = new Loess({ boundary_policy: "zero" });
const result = model.fit(x, y);
fastloess::Loess model({ .boundary_policy = "zero" });
auto result = model.fit(x, y).value();

No Boundary

Applies no padding. Each local fit uses only the points that are actually available, which may be fewer than the requested neighbourhood at the endpoints. This reproduces the original Cleveland (1979) algorithm exactly.

Use when: Reproducing reference results; you prefer the raw LOESS boundary behaviour.

Note

Without padding, boundary fits can have higher variance and visible edge artefacts, particularly with small fraction values.

model <- Loess(boundary_policy = "noboundary")
result <- model$fit(x, y)
model = fl.Loess(boundary_policy="noboundary")
result = model.fit(x, y)
let model = Loess::new()
    .boundary_policy("noboundary")
    .build()?;
let result = model.fit(&x, &y)?;
model = Loess(; boundary_policy="noboundary")
result = fit(model, x, y)
const model = new Loess({ boundary_policy: "noboundary" });
const result = model.fit(x, y);
const model = new Loess({ boundary_policy: "noboundary" });
const result = model.fit(x, y);
fastloess::Loess model({ .boundary_policy = "noboundary" });
auto result = model.fit(x, y).value();

Choosing a Policy

Situation Recommended Policy
General purpose "extend" (default)
Periodic signal (angle, day-of-year) "reflect"
Signal known to be zero at boundaries "zero"
Replicating original Cleveland behaviour "noboundary"