AlphaManagement#

class normtest.utils.helpers.AlphaManagement(alpha=0.05, **kwargs)[source]#

Instanciates a class for alpha management. It is primarily for internal use.

Parameters:
alphafloat, optional

The significance level (default is 0.05);

Notes

This method only allows input of type float and between 0.0 and 1.0.

get_alpha()[source]#

Returns the current alpha value

Returns:
alphafloat

The level of significance (\(\alpha\)).

set_alpha(alpha)[source]#

Changes the alpha value

Parameters:
alphafloat

The level of significance (\(\alpha\)).

Notes

This method only allows input of type float and between 0.0 and 1.0.