## CensoringType


The censoring flavor of a [Surv](Surv.md#greenwood.Surv) response.


Usage

``` python
CensoringType
```


## Examples

The members correspond to the [Surv](Surv.md#greenwood.Surv) constructors. A constructed response reports its flavor through `Surv(...).type`, which is one of these values.


``` python
from greenwood import CensoringType

list(CensoringType)
```


    [<CensoringType.RIGHT: 'right'>,
     <CensoringType.LEFT: 'left'>,
     <CensoringType.INTERVAL: 'interval'>,
     <CensoringType.COUNTING: 'counting'>]


## Attributes

| Name | Description |
|----|----|
| [COUNTING](#COUNTING) | The censoring flavor of a [Surv](Surv.md#greenwood.Surv) response. |
| [INTERVAL](#INTERVAL) | The censoring flavor of a [Surv](Surv.md#greenwood.Surv) response. |
| [LEFT](#LEFT) | The censoring flavor of a [Surv](Surv.md#greenwood.Surv) response. |
| [RIGHT](#RIGHT) | The censoring flavor of a [Surv](Surv.md#greenwood.Surv) response. |

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


#### COUNTING


The censoring flavor of a [Surv](Surv.md#greenwood.Surv) response.


`COUNTING=``"counting"`


The members correspond to the [Surv](Surv.md#greenwood.Surv) constructors. A constructed response reports its flavor through `Surv(...).type`, which is one of these values.


``` python
from greenwood import CensoringType

list(CensoringType)
```


    [<CensoringType.RIGHT: 'right'>,
     <CensoringType.LEFT: 'left'>,
     <CensoringType.INTERVAL: 'interval'>,
     <CensoringType.COUNTING: 'counting'>]


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


#### INTERVAL


The censoring flavor of a [Surv](Surv.md#greenwood.Surv) response.


`INTERVAL=``"interval"`


The members correspond to the [Surv](Surv.md#greenwood.Surv) constructors. A constructed response reports its flavor through `Surv(...).type`, which is one of these values.


``` python
from greenwood import CensoringType

list(CensoringType)
```


    [<CensoringType.RIGHT: 'right'>,
     <CensoringType.LEFT: 'left'>,
     <CensoringType.INTERVAL: 'interval'>,
     <CensoringType.COUNTING: 'counting'>]


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


#### LEFT


The censoring flavor of a [Surv](Surv.md#greenwood.Surv) response.


`LEFT=``"left"`


The members correspond to the [Surv](Surv.md#greenwood.Surv) constructors. A constructed response reports its flavor through `Surv(...).type`, which is one of these values.


``` python
from greenwood import CensoringType

list(CensoringType)
```


    [<CensoringType.RIGHT: 'right'>,
     <CensoringType.LEFT: 'left'>,
     <CensoringType.INTERVAL: 'interval'>,
     <CensoringType.COUNTING: 'counting'>]


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


#### RIGHT


The censoring flavor of a [Surv](Surv.md#greenwood.Surv) response.


`RIGHT=``"right"`


The members correspond to the [Surv](Surv.md#greenwood.Surv) constructors. A constructed response reports its flavor through `Surv(...).type`, which is one of these values.


``` python
from greenwood import CensoringType

list(CensoringType)
```


    [<CensoringType.RIGHT: 'right'>,
     <CensoringType.LEFT: 'left'>,
     <CensoringType.INTERVAL: 'interval'>,
     <CensoringType.COUNTING: 'counting'>]
