# ParametricTestResult


Result of a Wald test for a parametric coefficient.


Usage

``` python
ParametricTestResult(
    term_label,
    estimate,
    se,
    stat,
    p_value,
)
```


## Attributes


`term_label: str`  
Human-readable label for the term.

`estimate: float`  
Coefficient estimate β̂.

`se: float`  
Standard error of β̂.

`stat: float`  
Test statistic (t for Gaussian, z for known-scale families).

`p_value: float`  
Two-sided p-value.
