# WAICComparison


Comparison of two WAIC results on the same data.


Usage

``` python
WAICComparison(
    elpd_diff,
    se_diff,
)
```


## Attributes


`elpd_diff: float`  
Difference in ELPD_WAIC: `result1.elpd_waic - result2.elpd_waic`. Positive means `result1` is preferred while negative means `result2`.

`se_diff: float`  
Standard error of `elpd_diff`, computed from the pointwise differences using `sqrt(n * var(pointwise1 - pointwise2))`.
