# SimultaneousCIResult


Simultaneous confidence band for a smooth term.


Usage

``` python
SimultaneousCIResult(
    estimate,
    se,
    lower,
    upper,
    term_label,
    crit_value,
)
```


## Attributes


`estimate: NDArray`  
Estimated smooth effect at each evaluation point.

`se: NDArray`  
Pointwise standard errors.

`lower: NDArray`  
Lower simultaneous band.

`upper: NDArray`  
Upper simultaneous band.

`term_label: str`  
Label of the smooth term.

`crit_value: float`  
Critical value from posterior simulation.


## Attributes

| Name | Description |
|----|----|
| [n_points](#n_points) | Number of evaluation points. |

------------------------------------------------------------------------


### n_points


Number of evaluation points.


`n_points: int`


## Methods

| Name | Description |
|----|----|
| [keys()](#keys) | Dict-like keys for backward compatibility. |

------------------------------------------------------------------------


### keys()


Dict-like keys for backward compatibility.


Usage

``` python
keys()
```
