ContinuousOutcome

Note

This page is a reference documentation. It only explains the class signature, and not how to use it. Please refer to the Habitat Guide and Python API guide (v2.0) for usage.

class ContinuousOutcome(column: str)[source]

Bases: object

Continuous endpoint for regression, e.g. tumour volume change or a score.

column

Column holding the continuous response.

Type:

str

__post_init__() → None[source]

Validate the column name.

property columns: Tuple[str, ...]

Return the single response column.

__init__(column: str) → None