Ljung-Box Tests
ljung_box_test_step(
name: str,
*,
source: Literal[
"states",
"observables",
"x_pred",
"x_filt",
"y_pred",
"y_filt",
"innov",
"std_innov",
"payload",
],
filter_key: str = "filter",
payload_key: str | None = None,
column: Sequence[int] | int | None = None,
burn_in: int = 0,
drop_initial: bool = False,
lags: int = 10,
alpha: float = 0.05,
) -> MCStep
ljung_box_test_step wraps run_ljung_box_test(...). It selects a 1D array from generated data, a FilterResult, or a named payload, then runs the Ljung-Box test for autocorrelation up to the specified number of lags.
Lag Handling
- If
lagsis greater than the length of the input array minusburn_in, the test will run up to the maximum possible lag. - There is no automatic lag selection heuristic, if
lagsisn't specified, the default value of10is used regardless of the input array length.
Sources:
| Source | Description |
|---|---|
states |
Use context.data.states. Set drop_initial=True to remove the initial state row. |
observables |
Use context.data.observables. |
x_pred, x_filt, y_pred, y_filt, innov, std_innov |
Read arrays from the FilterResult stored under filter_key. |
payload |
Read an array-like object from context.payloads[payload_key]. |