When to use it
Use prior to modeling or forecasting time-series telemetry data.
Required Inputs
- Time series data vector Y_t
- Lag order choice
- Trend component (constant / linear trend / none)
Test whether a time series possesses a unit root and is non-stationary using the Augmented Dickey-Fuller (ADF) test.
Run this test live in StatLab npm i @statlab/coreUse prior to modeling or forecasting time-series telemetry data.
Δy_t = α + βt + γ y_{t-1} + δ_1 Δy_{t-1} + ... + ε_t
from statsmodels.tsa.stattools import adfuller
res = adfuller(time_series)
print(f"ADF={res[0]:.4f}, p={res[1]:.4f}")
library(tseries)
adf.test(time_series)
import { adfTest } from '@statlab/core';
const res = adfTest(timeSeries);
Continuous A/B testing, statistical telemetry analysis, and automated feedback loops for live backend services.
Explore VoxelPulse →Fixed-price AI release-readiness sprints, automated regression testing, and reliability statistical benchmarks.
Explore VoxelAssurance →Explore static calculators across the StatLab inference engine suite.