IntDistribution

class IntDistribution(low: int, high: int, step: int = 1, log: bool = False)[source]

Bases: etna.distributions.distributions.BaseDistribution

Integer-based distribution.

The input parameters aren’t validated.

Look at suggest_int() to find more about the meaning of parameters.

low

The lower bound.

Type

int

high

The upper bound.

Type

int

step

The space between possible values.

Type

int

log

The flag of using log domain.

Type

bool

Inherited-members

Parameters
  • low (int) –

  • high (int) –

  • step (int) –

  • log (bool) –

Return type

None

Attributes

log

step

low

high