localuf.constants

Module for constants.

Module Attributes

STANDARD_ERROR_ALPHA

Significance level corresponding to 1 SE.

Classes

Boundary(*values)

The string segments indicating which boundary nodes a detector connects to.

Growth(*values)

Constants for growth values.

localuf.constants.STANDARD_ERROR_ALPHA: float = np.float64(0.31731050786291415)

Significance level corresponding to 1 SE. Roughly 32%.

class localuf.constants.Growth(*values)[source]

Bases: IntEnum

Constants for growth values.

BURNT = -1
UNGROWN = 0
HALF = 1
FULL = 2
INCREMENT = 1
property as_float: float

Convert growth value to float. Burnt takes the value of 1.

class localuf.constants.Boundary(*values)[source]

Bases: StrEnum

The string segments indicating which boundary nodes a detector connects to.

FUTURE = 'F'
WEST = 'W'
EAST = 'E'