statys.core

Core is the core. Essentially, it is the parent of everything. You should find parent classes defining the basis of our structure. They should provide variables and methods that will help to construct other modules.

A core package for all common statys modules.

class statys.core.Distribution(*args)

A class that serves as the foundation for calculating statistical analysis. In other words, one can interpret this class as the population.

__init__(self, *args)

Initialization method.

__repr__(self)

Class’ string representation.

Returns

String representation.

Return type

(str)

property attrs(self)

Gathers all attributes from class.

Returns

Attributes encoded into a dictionary.

Return type

(Dict[str, Any])